mirror of
https://github.com/amiaopensource/ffmprovisr.git
synced 2025-06-25 20:27:50 +02:00
adds show/hide all button (#319)
resolves https://github.com/amiaopensource/ffmprovisr/issues/211
This commit is contained in:
6
js/js.js
6
js/js.js
@ -18,4 +18,10 @@ $(document).ready(function() {
|
||||
$('#' + id).closest('div').find('.link').append("<small>Link to this command: <a href='https://amiaopensource.github.io/ffmprovisr/index.html"+window.location.hash+"'>https://amiaopensource.github.io/ffmprovisr/index.html"+window.location.hash+"</a></small>");
|
||||
});
|
||||
|
||||
$('#open-all').on("click", function(){
|
||||
$('input[type=checkbox]').each(function(){
|
||||
this.checked = !this.checked;
|
||||
})
|
||||
});
|
||||
|
||||
});
|
||||
|
Reference in New Issue
Block a user