implement history for AJAX

This commit is contained in:
Oliver Gorwits
2012-01-28 19:56:54 +00:00
parent d9d7aad374
commit 5bd481a36a
13 changed files with 263 additions and 233 deletions

View File

@@ -0,0 +1,6 @@
// fix green background on search checkboxes
// https://github.com/twitter/bootstrap/issues/742
syncCheckBox = function() {
$(this).parents('.add-on').toggleClass('active', $(this).is(':checked'));
};
$('.add-on :checkbox').each(syncCheckBox).click(syncCheckBox);