Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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
  • Loading branch information
nikrou committed Feb 20, 2010
1 parent 6acc3ff commit a8c86a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/template/goto/menubar.tpl
Expand Up @@ -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);
}
}
});
Expand Down

0 comments on commit a8c86a3

Please sign in to comment.