Pre template modifications
This commit is contained in:
@@ -128,6 +128,21 @@ document.addEventListener("DOMContentLoaded", function(event) {
|
||||
$('#advanced-tree-expand i').text('add');
|
||||
}
|
||||
});
|
||||
|
||||
$('#compare-settings').hide();
|
||||
var compareExpanded = false;
|
||||
$('#compare-expand').bind('click', function(e) {
|
||||
if (!compareExpanded){
|
||||
compareExpanded = true;
|
||||
$('#compare-settings').show('fast');
|
||||
$('#compare-expand i').text('remove');
|
||||
} else {
|
||||
compareExpanded = false;
|
||||
$('#compare-settings').hide('fast');
|
||||
$('#compare-expand i').text('add');
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
$("#submit-form").submit( function(eventObj) {
|
||||
|
||||
Reference in New Issue
Block a user