UNPKG

rutile

Version:

Factory automation for Mobile Enterprise.

29 lines (19 loc) 546 B
var self = exports; var changeHandler = function(){}; exports.putEventListener = function(event,callback){ if( event === 'change' ){ changeHandler = callback; } }; // * * * * * * * * * * * * * * * * * * * * * * * exports.setValue = function(value){ $.FormElementLabel.text = value; }; exports.getValue = function(){ return $.FormElementLabel.text; }; // enable and disable editing exports.enableEditing = function(){ // do nothing }; exports.disableEditing = function(){ // do nothing };