-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed rangeSlider.js, Changged UI to materiallizecss
- Loading branch information
1 parent
241aabf
commit 90981da
Showing
19 changed files
with
136 additions
and
156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,12 +44,5 @@ | |
"webRequestBlocking", | ||
"tabs" | ||
], | ||
"version": "0.2", | ||
"applications": { | ||
"gecko": { | ||
"id": "[email protected]", | ||
"strict_min_version": "50.0" | ||
} | ||
} | ||
|
||
"version": "0.2" | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,16 @@ | ||
$(document).ready(function () { | ||
$(function(){ | ||
$('input[type="range"]').rangeslider({ | ||
polyfill:false, | ||
onInit:function(){ | ||
$('.header .pull-right').text($('input[type="range"]').val()+'%'); | ||
}, | ||
onSlide:function(position, value){ | ||
$('.header .pull-right').text(value+'%'); | ||
}, | ||
onSlideEnd:function(position, value){ | ||
//So what? | ||
} | ||
}); | ||
}); | ||
|
||
$("#btn_fill").on('click',function () { | ||
fillOptions($("#range_inp").val(),false,false); | ||
}); | ||
|
||
$("#btn_fill_submit").on('click',function () { | ||
fillOptions($("#range_inp").val(),false,true); | ||
}); | ||
|
||
$("#btn_fill_bypass").on('click',function () { | ||
fillOptions($("#range_inp").val(),true,false); | ||
}); | ||
$('#tabs-swipe-demo').tabs(); | ||
|
||
$("#btn_fill_submit_bypass").on('click',function () { | ||
fillOptions($("#range_inp").val(),true,true); | ||
$("#submit_data").on('click',function () { | ||
let autoSend = $("#auto_send").prop("checked"); | ||
let bypassFilter = $("#bypass_filter").prop("checked"); | ||
let percent = $("#range_inp").val(); | ||
fillOptions(percent,bypassFilter,autoSend); | ||
}); | ||
|
||
$("#cancel").on('click',function () { | ||
window.close(); | ||
}) | ||
|
||
}); |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters