Some general cleaning up in the menu's and the various controllers. Added a new class (yet to be tested) and removed most of the "piggy bank"-implementation in anticipation of the ideas from issue #6. Fixed a bug in the default user seeder.

This commit is contained in:
James Cole
2014-08-13 07:02:13 +02:00
parent dbcf6613c6
commit e2940015ca
36 changed files with 365 additions and 324 deletions

View File

@@ -0,0 +1,25 @@
$(function () {
updatePiggyFields();
$('input[name="repeats"]').on('change',updatePiggyFields);
});
function updatePiggyFields() {
//var val = $('input[name="repeats"]').checked;
console.log('Repeating elements: ' + $('.repeat-piggy').length);
console.log('Non-repeating elements: ' + $('.no-repeat-piggy').length);
if($('input[name="repeats"]').prop( "checked" )) {
// checked, repeats!
console.log('repeats!');
$('.repeat-piggy').show();
$('.no-repeat-piggy').hide();
} else {
console.log('no repeats!');
// unchecked, does not repeat!
$('.no-repeat-piggy').show();
$('.repeat-piggy').hide();
}
}