mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 07:52:36 +00:00
5 lines
213 B
JavaScript
5 lines
213 B
JavaScript
/*
|
|
* backward compatible support for html dialog title
|
|
*/
|
|
|
|
$.widget("ui.dialog",$.extend({},$.ui.dialog.prototype,{_title:function(e){if(!this.options.title){e.html(" ")}else{e.html(this.options.title)}}})) |