aboutsummaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorGokulakrishna <gokulakrishnaks@gmail.com>2018-05-18 22:47:29 +0530
committerGokulakrishna <gokulakrishnaks@gmail.com>2018-05-18 22:47:41 +0530
commit7490d7adee1d7f938ee92f743c8d17f87e554848 (patch)
tree85252baa794688d7d7c4c6a4c9eeda82f21ba50c /js
parentf01348a69915f1f9440d8b8f5b01e6fcd25d828f (diff)
Fix #115 responsive images type in Firefox
Diffstat (limited to 'js')
-rw-r--r--js/controllers/editredirect.js2
-rw-r--r--js/redirect.js1
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"