mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 17:46:02 +08:00
git-subtree-dir: public/legacy git-subtree-split: 817a12dc0c30c189f56d5cb1f7dc37a9631bdbe3
5 lines
No EOL
213 B
JavaScript
5 lines
No EOL
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)}}})) |