2010-03-12 Junichi Satoh <junichi@rworks.jp>
* godmode/alerts/configure_alert_compound.php : Changed not to use variable "alert" on java script. IE8 can't handle it as a variable. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2506 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
608291f137
commit
6c2f9fe3f9
|
@ -1,3 +1,8 @@
|
|||
2010-03-12 Junichi Satoh <junichi@rworks.jp>
|
||||
|
||||
* godmode/alerts/configure_alert_compound.php : Changed not to use
|
||||
variable "alert" on java script. IE8 can't handle it as a variable.
|
||||
|
||||
2010-03-11 Snacho Lerena <slerena@artica.es>
|
||||
|
||||
* include/help/en/check_other_languages.sh: Small script to show
|
||||
|
|
|
@ -643,8 +643,7 @@ function remove_alert () {
|
|||
|
||||
function add_alert () {
|
||||
id = this.id.split ("-").pop ();
|
||||
alert = alerts[id];
|
||||
if (alert == null)
|
||||
if (alerts[id] == null)
|
||||
return;
|
||||
input = $("<input type=\"hidden\"></input>")
|
||||
.attr ("name", "conditions[]")
|
||||
|
|
Loading…
Reference in New Issue