diff options
author | flop25 <flop25@piwigo.org> | 2011-03-12 13:35:18 +0000 |
---|---|---|
committer | flop25 <flop25@piwigo.org> | 2011-03-12 13:35:18 +0000 |
commit | 9384dcd293f6ed18ff7032984d4ea753257e0bda (patch) | |
tree | 364b542afbf966321208d4a27070dc98b493650b /admin/themes/default | |
parent | edfe58bc9b031877fbbe90d7968b1211f0a3574d (diff) |
bug:2220
2 {ldelim} was written instead of 2 { in the js
git-svn-id: http://piwigo.org/svn/trunk@9625 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/themes/default/template/themes_update.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/themes/default/template/themes_update.tpl b/admin/themes/default/template/themes_update.tpl index caad66aa4..3bf1cc0b1 100644 --- a/admin/themes/default/template/themes_update.tpl +++ b/admin/themes/default/template/themes_update.tpl @@ -1,6 +1,6 @@ {footer_script require='jquery.effects.blind'}{literal} -jQuery(document).ready(function(){ldelim} - jQuery("td[id^='desc_'], p[id^='revdesc_']").click(function() {ldelim} +jQuery(document).ready(function(){ + jQuery("td[id^='desc_'], p[id^='revdesc_']").click(function() { id = this.id.split('_'); jQuery("#revdesc_"+id[1]).toggle('blind'); jQuery(".button_"+id[1]).toggle(); |