X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/operations/recherche.php?a=blobdiff_plain;f=resources%2Flib%2Foojs-ui%2Foojs-ui-windows.js;h=8234b6dec6a5911987e22299804742db9fcdd168;hb=b3bddf938e6816ebd2e93e3e310e1d65861f6daf;hp=17bab019c511fb8a8fd464e4960057df09faac27;hpb=d0845626087510c68d7c75eb44c6999bcc89f380;p=lhc%2Fweb%2Fwiklou.git diff --git a/resources/lib/oojs-ui/oojs-ui-windows.js b/resources/lib/oojs-ui/oojs-ui-windows.js index 17bab019c5..8234b6dec6 100644 --- a/resources/lib/oojs-ui/oojs-ui-windows.js +++ b/resources/lib/oojs-ui/oojs-ui-windows.js @@ -1,12 +1,12 @@ /*! - * OOjs UI v0.17.4 + * OOjs UI v0.17.5 * https://www.mediawiki.org/wiki/OOjs_UI * * Copyright 2011–2016 OOjs UI Team and other contributors. * Released under the MIT license * http://oojs.mit-license.org * - * Date: 2016-05-31T21:50:52Z + * Date: 2016-06-29T13:27:08Z */ ( function ( OO ) { @@ -3114,7 +3114,11 @@ OO.ui.ProcessDialog.prototype.initialize = function () { .append( this.$errors ); this.$navigation .addClass( 'oo-ui-processDialog-navigation' ) - .append( this.$safeActions, this.$location, this.$primaryActions ); + // Note: Order of appends below is important. These are in the order + // we want tab to go through them. Display-order is handled entirely + // by CSS absolute-positioning. As such, primary actions like "done" + // should go first. + .append( this.$primaryActions, this.$location, this.$safeActions ); this.$head.append( this.$navigation ); this.$foot.append( this.$otherActions ); };