diff options
| author | Einar Egilsson <einar@einaregilsson.com> | 2018-08-17 10:41:58 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-17 10:41:58 +0000 |
| commit | 506f78a13124fdbe5e33485dbd0b079cd8fffd47 (patch) | |
| tree | 0e269965cc77f6b78c4b8821c910518c259ab414 /js/controllers/editredirect.js | |
| parent | 005cdf5953a165c5f117102382cd38ecb641fa2f (diff) | |
| parent | 12c3df39097905f981a392dceaa93ac879813159 (diff) | |
Merge pull request #120 from gkrishnaks/master
Typo correction in variable declaration, and closes feature requests #104, #86, #72 and fix for issue #115, updated excludeMatch() for faster regex check.
Diffstat (limited to 'js/controllers/editredirect.js')
| -rw-r--r-- | js/controllers/editredirect.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/controllers/editredirect.js b/js/controllers/editredirect.js index 3d63340..81a4ee9 100644 --- a/js/controllers/editredirect.js +++ b/js/controllers/editredirect.js @@ -79,7 +79,7 @@ redirectorApp.controller('EditRedirectCtrl', ['$scope', function($s) { arr.splice(index, 1); } - var order = 'main_frame,sub_frame,stylesheet,script,image,object,xmlhttprequest,other'; + var order = 'main_frame,sub_frame,stylesheet,script,image,imageset,object,xmlhttprequest,other'; arr.sort(function(a,b) { return order.indexOf(a) - order.indexOf(b); |
