From 4a2aac5bb3d9049389a18ad83f8bf553bb2c47ca Mon Sep 17 00:00:00 2001 From: guy Date: Thu, 29 Mar 2018 14:00:32 +0800 Subject: [PATCH] update --- dist/fix/fix-1.0.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;