diff --git a/dist/fix/fix-1.0.js b/dist/fix/fix-1.0.js index bbe1783ee..6c2d9f337 100644 --- a/dist/fix/fix-1.0.js +++ b/dist/fix/fix-1.0.js @@ -1423,7 +1423,7 @@ BI.WRouter = BI.inherit(BI.Router, { get: function (fragment) { var result = null; - _.any(this.handlers, function (handler) { + _.some(this.handlers, function (handler) { if (handler.route.test(fragment)) { result = handler.callback(fragment); return true;