rutile
Version:
Factory automation for Mobile Enterprise.
17 lines (13 loc) • 364 B
JavaScript
exports.setMessage = function(message){
$.ActivityIndicator.message = message;
};
exports.showIndicator = function(){
$.Container.visible = true;
$.ActivityIndicatorBack.visible = true;
$.ActivityIndicator.show();
};
exports.hideIndicator = function(){
$.Container.visible = false;
$.ActivityIndicatorBack.visible = false;
$.ActivityIndicator.hide();
};