summaryrefslogtreecommitdiff
path: root/lib/scripts/page.js
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2012-01-25 20:24:15 +0100
committerAndreas Gohr <andi@splitbrain.org>2012-01-25 20:24:15 +0100
commit8ffcd8ae653b6e080efb01adcc96482315496bab (patch)
tree0d3ef49407be7b821f2b25f02305ad8bd7a9d6df /lib/scripts/page.js
parent61d7a0b7204a0a21c3fdcd65c7d2661403c0a443 (diff)
parent5371328c2ade9ee2c2e09db62992fe4cfaadbbf1 (diff)
downloadrpg-8ffcd8ae653b6e080efb01adcc96482315496bab.tar.gz
rpg-8ffcd8ae653b6e080efb01adcc96482315496bab.tar.bz2
Merge branch 'master' into stable
* master: (75 commits) release preparations Romanian language update removed 'view original' button from new media manager again (was added in b8a84c03) and made a link around the image instead, as that is a more minor change (as it should be during the RC phase) and is what was originally planned corrected old mediaupload introduction text Removed obsolete Opera fix that now causes harm FS#2429 don't limit download sizes in plugin manager Disable E_STRICT error reporting Make Sitemapper functions static as they were used as static functions Make this dummy file empty like all others Update copyright year Remove testing md5 hash from installer Slovak language update localization: removed strings from old flashuploader Polish language update readded missing "view original" button to the new media manager always show full filename as tooltip in mediamanager Fix sorting in media manager search (FS#2423) make the installer check for new media dirs do not rely on tmpfile() in the AJAX uploader backend FS#2417 Galician language update ...
Diffstat (limited to 'lib/scripts/page.js')
-rw-r--r--lib/scripts/page.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/scripts/page.js b/lib/scripts/page.js
index e4033b76d..5da4a9cc0 100644
--- a/lib/scripts/page.js
+++ b/lib/scripts/page.js
@@ -43,7 +43,7 @@ dw_page = {
*
* @param target - the DOM element at which the popup should be aligned at
* @param popup_id - the ID of the (new) DOM popup
- * @return the Popup JQuery object
+ * @return the Popup jQuery object
*/
insituPopup: function(target, popup_id) {
// get or create the popup div
@@ -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