1
0

fix toggle_extended (missing namespace)

This commit is contained in:
onli
2013-06-25 01:12:28 +02:00
parent 4c95630c4c
commit f2cf17804b

View File

@ -367,7 +367,7 @@ window.log = function f(){ log.history = log.history || []; log.history.push(arg
$('textarea[name="serendipity[extended]"]').parent().prepend('<a id="toggle_extended" class="button_link" href="#serendipity[extended]"><span class="icon-plus"></span><span class="visuallyhidden"> {$CONST.TOGGLE_ALL}</span></a>');
$(toggleButton).click(function(e) {
e.preventDefault();
toggle_extended(true);
serendipity.toggle_extended(true);
});
}