Followup of Rouslan's recent commit - form field selection should never be based on language strings
This commit is contained in:
parent
a66a40262a
commit
16875ecd70
@ -411,7 +411,7 @@ $(document).ready(function() {
|
||||
/**
|
||||
* Click action for "Go" button in ajax dialog insertForm -> insertRowTable
|
||||
*/
|
||||
$("#insertForm .insertRowTable.ajax input[value=Go]").live('click', function(event) {
|
||||
$("#insertForm .insertRowTable.ajax input[type=submit]").live('click', function(event) {
|
||||
event.preventDefault();
|
||||
/**
|
||||
* @var the_form object referring to the insert form
|
||||
|
||||
@ -339,7 +339,7 @@ $(document).ready(function() {
|
||||
/**
|
||||
*Ajax event handler for Add column(s)
|
||||
**/
|
||||
$("#addColumns.ajax input[value=Go]").live('click', function(event){
|
||||
$("#addColumns.ajax input[type=submit]").live('click', function(event){
|
||||
event.preventDefault();
|
||||
|
||||
/*Remove the hidden dialogs if there are*/
|
||||
|
||||
Loading…
Reference in New Issue
Block a user