Import element selection page added to allow selective importing.

This commit is contained in:
Andrew Manning
2016-07-30 09:56:47 -04:00
parent f17f51a9c1
commit 32366284a8
4 changed files with 307 additions and 94 deletions

15
view/js/mod_webpages.js Normal file
View File

@@ -0,0 +1,15 @@
$(document).ready(function() {
$("input[type=\"checkbox\"]").hide();
});
window.isChecked = true;
function checkedAll(isChecked) {
window.isChecked = !window.isChecked ;
var c = document.getElementsByTagName('input');
for (var i = 0; i < c.length; i++){
if (c[i].type == 'checkbox'){
c[i].checked = isChecked;
}
}
}