diff options
| author | Gokulakrishna <gokulakrishnaks@gmail.com> | 2018-05-18 22:47:29 +0530 | 
|---|---|---|
| committer | Gokulakrishna <gokulakrishnaks@gmail.com> | 2018-05-18 22:47:41 +0530 | 
| commit | 7490d7adee1d7f938ee92f743c8d17f87e554848 (patch) | |
| tree | 85252baa794688d7d7c4c6a4c9eeda82f21ba50c | |
| parent | f01348a69915f1f9440d8b8f5b01e6fcd25d828f (diff) | |
Fix #115 responsive images type in Firefox
| -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" | 
