diff options
Diffstat (limited to 'js')
-rw-r--r-- | js/controllers/editredirect.js | 2 | ||||
-rw-r--r-- | js/redirect.js | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/js/controllers/editredirect.js b/js/controllers/editredirect.js index 811c92d..216581d 100644 --- a/js/controllers/editredirect.js +++ b/js/controllers/editredirect.js @@ -66,7 +66,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); diff --git a/js/redirect.js b/js/redirect.js index 3b772b8..75f000d 100644 --- a/js/redirect.js +++ b/js/redirect.js @@ -18,6 +18,7 @@ Redirect.requestTypes = { stylesheet : "Stylesheets", script : "Scripts", image : "Images", + imageset: "Responsive Images in Firefox", object : "Objects (e.g. Flash videos, Java applets)", xmlhttprequest : "XMLHttpRequests (Ajax)", other : "Other" |