X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=web%2Fcore%2Fmisc%2Fdialog%2Fdialog.jquery-ui.js;h=246855c96df95f7c262df5e802538dd5a4810d10;hb=0bf8d09d2542548982e81a441b1f16e75873a04f;hp=2526e30953b9d5c7dc2296ab1751ef56c874d8bf;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;p=yaffs-website diff --git a/web/core/misc/dialog/dialog.jquery-ui.js b/web/core/misc/dialog/dialog.jquery-ui.js index 2526e3095..246855c96 100644 --- a/web/core/misc/dialog/dialog.jquery-ui.js +++ b/web/core/misc/dialog/dialog.jquery-ui.js @@ -1,22 +1,20 @@ /** - * @file - * Adds default classes to buttons for styling purposes. - */ +* DO NOT EDIT THIS FILE. +* See the following change record for more information, +* https://www.drupal.org/node/2815083 +* @preserve +**/ (function ($) { - - 'use strict'; - $.widget('ui.dialog', $.ui.dialog, { options: { buttonClass: 'button', buttonPrimaryClass: 'button--primary' }, - _createButtons: function () { + _createButtons: function _createButtons() { var opts = this.options; - var primaryIndex; - var $buttons; - var index; + var primaryIndex = void 0; + var index = void 0; var il = opts.buttons.length; for (index = 0; index < il; index++) { if (opts.buttons[index].primary && opts.buttons[index].primary === true) { @@ -26,11 +24,10 @@ } } this._super(); - $buttons = this.uiButtonSet.children().addClass(opts.buttonClass); + var $buttons = this.uiButtonSet.children().addClass(opts.buttonClass); if (typeof primaryIndex !== 'undefined') { $buttons.eq(index).addClass(opts.buttonPrimaryClass); } } }); - -})(jQuery); +})(jQuery); \ No newline at end of file