diff options
author | nikrou <nikrou@piwigo.org> | 2010-02-20 20:22:06 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-02-20 20:22:06 +0000 |
commit | a8c86a3d91d2a582d7af55239f607055bcca4c00 (patch) | |
tree | c3f987e87b490e0900a6a696b310abe50de85ad0 /admin/template/goto/menubar.tpl | |
parent | 6acc3ff7909dd7f070973c112ebd9291862982f8 (diff) |
Feature 1442 : fix problem with type selector : :text instead of @type='text'
git-svn-id: http://piwigo.org/svn/trunk@4919 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/template/goto/menubar.tpl')
-rw-r--r-- | admin/template/goto/menubar.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/template/goto/menubar.tpl b/admin/template/goto/menubar.tpl index 8bf9a4a2d..d77c2dbac 100644 --- a/admin/template/goto/menubar.tpl +++ b/admin/template/goto/menubar.tpl @@ -11,7 +11,7 @@ var rows = table.tBodies[0].rows; for (var i=0; i<rows.length; i++) { $(rows[i]) .attr('class', 'row'+i%2) - .find("input[@type='text']").attr('value', (i+1)*10); + .find("input:text").attr('value', (i+1)*10); } } }); |