From: Jörn Zaefferer Date: Thu, 15 Nov 2012 23:09:01 +0000 (+0100) Subject: Dialog: Remove uuid and getTitleId. Leftovers from 240b22b1439df22408c5782e640e98cb33... X-Git-Tag: 1.10.0-beta.1~106 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e3dcaf28ebd24c0e5745ef4807786c2835fc01e7;p=jquery-ui.git Dialog: Remove uuid and getTitleId. Leftovers from 240b22b1439df22408c5782e640e98cb335c7a2e. --- diff --git a/ui/jquery.ui.dialog.js b/ui/jquery.ui.dialog.js index 8a52ff236..9bd1f44a0 100644 --- a/ui/jquery.ui.dialog.js +++ b/ui/jquery.ui.dialog.js @@ -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 );