diff options
author | Anika Henke <anika@selfthinker.org> | 2011-11-28 22:14:20 +0000 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2011-11-28 22:14:20 +0000 |
commit | 04dd9c85e28535b43c7821841cd97b52682adae3 (patch) | |
tree | 5c47f193a6b6d30be8f0a6eaa68adc83aa95fe7d /lib/scripts/page.js | |
parent | 33772bd07bf044aafa7426d90f7823bae25ab403 (diff) | |
download | dokuwiki-04dd9c85e28535b43c7821841cd97b52682adae3.tar.gz dokuwiki-04dd9c85e28535b43c7821841cd97b52682adae3.zip |
fixed link wizard being appended to every div.dokuwiki (FS#2395) and changed div.dokuwiki to just .dokuwiki (some templates have the class in the body)
Diffstat (limited to 'lib/scripts/page.js')
-rw-r--r-- | lib/scripts/page.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/scripts/page.js b/lib/scripts/page.js index 55a844f0b..5da4a9cc0 100644 --- a/lib/scripts/page.js +++ b/lib/scripts/page.js @@ -55,7 +55,7 @@ dw_page = { .attr('id', popup_id) .addClass('insitu-footnote JSpopup') .mouseleave(function () {jQuery(this).hide();}); - jQuery('div.dokuwiki:first').append($fndiv); + jQuery('.dokuwiki:first').append($fndiv); } // position() does not support hidden elements |