opera possible fix for labelTest
This commit is contained in:
parent
825882d6c1
commit
37897616ff
2 changed files with 3 additions and 3 deletions
|
@ -2281,7 +2281,7 @@
|
|||
|
||||
print "<div align='right'>";
|
||||
|
||||
print "<input type=\"submit\" onclick=\"labelTest()\" value=\"Test\">
|
||||
print "<input type=\"submit\" onclick=\"return labelTest()\" value=\"Test\">
|
||||
";
|
||||
|
||||
print "<input type=\"submit\"
|
||||
|
|
4
prefs.js
4
prefs.js
|
@ -734,12 +734,12 @@ function labelEditSave() {
|
|||
|
||||
if (sql_exp.length == 0) {
|
||||
alert("SQL Expression cannot be blank.");
|
||||
return;
|
||||
return false;
|
||||
}
|
||||
|
||||
if (description.length == 0) {
|
||||
alert("Caption field cannot be blank.");
|
||||
return;
|
||||
return false;
|
||||
}
|
||||
|
||||
closeInfoBox();
|
||||
|
|
Loading…
Reference in a new issue