Paladox has uploaded a new change for review. https://gerrit.wikimedia.org/r/216628
Change subject: Update jquery to 1.11.3 ...................................................................... Update jquery to 1.11.3 * Includes a fix for ios 8. Change-Id: I62edfe7f80b59c93a2aac98526e2547bada240ba --- R rsrc/jquery-1.11.3.js M src/celerity/map.php M src/controller/SprintController.php 3 files changed, 21 insertions(+), 7 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/phabricator/extensions/Sprint refs/changes/28/216628/1 diff --git a/rsrc/jquery-1.11.2.js b/rsrc/jquery-1.11.3.js similarity index 99% rename from rsrc/jquery-1.11.2.js rename to rsrc/jquery-1.11.3.js index 45a92db..6feb110 100644 --- a/rsrc/jquery-1.11.2.js +++ b/rsrc/jquery-1.11.3.js @@ -1,5 +1,15 @@ -/** - * @provides jquery +/*! + * jQuery JavaScript Library v1.11.3 + * http://jquery.com/ + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * + * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: 2015-04-28T16:19Z */ (function( global, factory ) { @@ -54,7 +64,7 @@ var - version = "1.11.2", + version = "1.11.3", // Define a local copy of jQuery jQuery = function( selector, context ) { @@ -559,7 +569,12 @@ }); function isArraylike( obj ) { - var length = obj.length, + + // Support: iOS 8.2 (not reproducible in simulator) + // `in` check used to prevent JIT error (gh-2145) + // hasOwn isn't used here due to false negatives + // regarding Nodelist length in IE + var length = "length" in obj && obj.length, type = jQuery.type( obj ); if ( type === "function" || jQuery.isWindow( obj ) ) { diff --git a/src/celerity/map.php b/src/celerity/map.php index 9148118..5c7cacc 100644 --- a/src/celerity/map.php +++ b/src/celerity/map.php @@ -23,7 +23,7 @@ 'dataTables.tableTools.css' => '380aa862', 'dataTables.tableTools.js' => '69919d95', 'images/Screenshot-1.png' => '500c0ca0', - 'jquery-1.11.2.js' => '75fa3fcc', + 'jquery-1.11.3.js' => '75fa3fcc', 'jquery.dataTables.js' => 'faddf310', 'phui-workboard-view.css' => '4f0fb320', 'sprint-report.css' => 'f6959ade', diff --git a/src/controller/SprintController.php b/src/controller/SprintController.php index c1928f5..5729737 100644 --- a/src/controller/SprintController.php +++ b/src/controller/SprintController.php @@ -135,8 +135,7 @@ if (PhabricatorApplication::isClassInstalledForViewer($class, $viewer)) { $phid = $project->getPHID(); $query_uri = urisprintf( - '/maniphest/?statuses=%s&allProjects=%s#R', - implode(',', ManiphestTaskStatus::getOpenStatusConstants()), + '/maniphest/?statuses=open()&projects=%s#R', $phid); $nav->addIcon(null, pht('Open Tasks'), 'fa-anchor', null, $query_uri); } -- To view, visit https://gerrit.wikimedia.org/r/216628 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I62edfe7f80b59c93a2aac98526e2547bada240ba Gerrit-PatchSet: 1 Gerrit-Project: phabricator/extensions/Sprint Gerrit-Branch: master Gerrit-Owner: Paladox <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
