This repository has been archived on 2025-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
moodle-local_treestudyplan/amd/src/util/formfields.js

10 lines
350 B
JavaScript
Raw Normal View History

import Debugger from './debugger';
const debug = new Debugger("formfields");
/**
* convert a text field into an integer only text field
* @param {Date|string} id The Id of the form field
*/
export function text_integer(id){
const element = document.getElementById(id);
debug.warn("Initializing form element text_integer on ",id,element);
}