You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
686 B
32 lines
686 B
const lib_msg = {
|
|
|
|
// UI functions
|
|
addTextinID: function(text, id){
|
|
$(id).html(text.toUpperCase())
|
|
},
|
|
|
|
displayMessage: function(text){
|
|
this.addTextinID('', '#errors')
|
|
this.addTextinID('', '#info')
|
|
this.addTextinID(text, '#msg')
|
|
},
|
|
|
|
displayErrors: function(text){
|
|
this.addTextinID('', '#msg')
|
|
this.addTextinID('', '#info')
|
|
this.addTextinID(text, '#errors')
|
|
},
|
|
|
|
displayInfo: function(text){
|
|
this.addTextinID('', '#msg')
|
|
this.addTextinID('', '#errors')
|
|
this.addTextinID(text, '#info')
|
|
},
|
|
|
|
cleanMessagesUi: function() {
|
|
this.addTextinID('', '#msg')
|
|
this.addTextinID('', '#errors')
|
|
this.addTextinID('', '#info')
|
|
}
|
|
|
|
}
|
|
|