diff options
author | Anika Henke <anika@selfthinker.org> | 2011-11-30 00:37:52 +0000 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2011-11-30 00:37:52 +0000 |
commit | 4b7f30c244499fdfe9457b8d7a76566bee7d3abf (patch) | |
tree | 155cd349c5400d6fb2326611ab01436e362e5bcd /lib/scripts/behaviour.js | |
parent | 04dd9c85e28535b43c7821841cd97b52682adae3 (diff) | |
download | dokuwiki-4b7f30c244499fdfe9457b8d7a76566bee7d3abf.tar.gz dokuwiki-4b7f30c244499fdfe9457b8d7a76566bee7d3abf.zip |
bind JS for revision diff also when called through AJAX (fixes checkbox selection in history of new media manager, FS#2398)
Diffstat (limited to 'lib/scripts/behaviour.js')
-rw-r--r-- | lib/scripts/behaviour.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/scripts/behaviour.js b/lib/scripts/behaviour.js index 20b408322..cffdde042 100644 --- a/lib/scripts/behaviour.js +++ b/lib/scripts/behaviour.js @@ -16,7 +16,7 @@ var dw_behaviour = { dw_behaviour.subscription(); dw_behaviour.revisionBoxHandler(); - jQuery('#page__revisions input[type=checkbox]').click( + jQuery('#page__revisions input[type=checkbox]').live('click', dw_behaviour.revisionBoxHandler ); }, |