jenkins-bot has submitted this change and it was merged. Change subject: Update OOjs UI to v0.1.0-pre (98570355f6) ......................................................................
Update OOjs UI to v0.1.0-pre (98570355f6) New changes: 9857035 [BREAKING CHANGE] Fix some intialize -> initialize typos Despite the breaking nature of the change, no local changes in VE-core. Change-Id: Icffea33c8a09f59f3b89f005b954ad043bb358bd --- M lib/oojs-ui/oojs-ui.js M lib/oojs-ui/oojs-ui.svg.css 2 files changed, 6 insertions(+), 6 deletions(-) Approvals: Trevor Parscal: Looks good to me, approved jenkins-bot: Verified diff --git a/lib/oojs-ui/oojs-ui.js b/lib/oojs-ui/oojs-ui.js index 88d470e..fd5a3bd 100644 --- a/lib/oojs-ui/oojs-ui.js +++ b/lib/oojs-ui/oojs-ui.js @@ -1,12 +1,12 @@ /*! - * OOjs UI v0.1.0-pre (eaa1b7f06d) + * OOjs UI v0.1.0-pre (98570355f6) * https://www.mediawiki.org/wiki/OOjs_UI * * Copyright 2011–2014 OOjs Team and other contributors. * Released under the MIT license * http://oojs.mit-license.org * - * Date: Thu Apr 03 2014 16:57:22 GMT-0700 (PDT) + * Date: Fri Apr 04 2014 10:37:07 GMT-0700 (PDT) */ ( function ( OO ) { @@ -5699,7 +5699,7 @@ */ OO.ui.LookupInputWidget.prototype.initializeLookupMenuSelection = function () { if ( !this.lookupMenu.getSelectedItem() ) { - this.lookupMenu.intializeSelection( this.lookupMenu.getFirstSelectableItem() ); + this.lookupMenu.initializeSelection( this.lookupMenu.getFirstSelectableItem() ); } this.lookupMenu.highlightItem( this.lookupMenu.getSelectedItem() ); }; @@ -6370,7 +6370,7 @@ * @param {OO.ui.OptionWidget} [item] Item to select * @chainable */ -OO.ui.SelectWidget.prototype.intializeSelection = function ( item ) { +OO.ui.SelectWidget.prototype.initializeSelection = function ( item ) { var i, len, selected; for ( i = 0, len = this.items.length; i < len; i++ ) { diff --git a/lib/oojs-ui/oojs-ui.svg.css b/lib/oojs-ui/oojs-ui.svg.css index d89b21b..363a63a 100644 --- a/lib/oojs-ui/oojs-ui.svg.css +++ b/lib/oojs-ui/oojs-ui.svg.css @@ -1,12 +1,12 @@ /*! - * OOjs UI v0.1.0-pre (eaa1b7f06d) + * OOjs UI v0.1.0-pre (98570355f6) * https://www.mediawiki.org/wiki/OOjs_UI * * Copyright 2011–2014 OOjs Team and other contributors. * Released under the MIT license * http://oojs.mit-license.org * - * Date: Thu Apr 03 2014 16:57:22 GMT-0700 (PDT) + * Date: Fri Apr 04 2014 10:37:07 GMT-0700 (PDT) */ /* Textures */ -- To view, visit https://gerrit.wikimedia.org/r/123883 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: Icffea33c8a09f59f3b89f005b954ad043bb358bd Gerrit-PatchSet: 1 Gerrit-Project: VisualEditor/VisualEditor Gerrit-Branch: master Gerrit-Owner: Jforrester <[email protected]> Gerrit-Reviewer: Trevor Parscal <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
