Dialog: Remove uuid and getTitleId. Leftovers from 240b22b143.

This commit is contained in:
Jörn Zaefferer 2012-11-16 00:09:01 +01:00
parent 0bc73b74b6
commit e3dcaf28eb

View File

@ -662,17 +662,6 @@ $.widget("ui.dialog", {
});
$.extend($.ui.dialog, {
// TODO remove these
uuid: 0,
getTitleId: function($el) {
var id = $el.attr( "id" );
if ( !id ) {
this.uuid += 1;
id = this.uuid;
}
return "ui-dialog-title-" + id;
},
// TODO move to dialog instance method
overlay: function( dialog ) {
this.$el = $.ui.dialog.overlay.create( dialog );