dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 192524 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r192524 | seanbright | 2009-05-05 15:56:11 -0400 (Tue, 05 May 2009) | 11 lines
  
  Fix Javascript error when using astman.js in Internet Explorer.
  
  Internet Explorer (tested with 7.0) does not like trailing commas on constructs
  like object initializers, so get rid of them to avoid some errors.
  
  (closes issue #15026)
  Reported by: rajnishgiri
  Patches:
        bug15026.patch uploaded by seanbright (license 71)
  Tested by: seanbright
........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@192525 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
seanbright 2009-05-05 19:57:49 +00:00
parent c739ee5ec0
commit 3732065d70
1 changed files with 2 additions and 2 deletions

View File

@ -238,7 +238,7 @@ function Astman() {
onSuccess: this.managerResponse,
onFailure: function(t) {
alert("Error: " + t.status + ": " + t.statusText);
},
}
};
me.callback = callback;
opt.parameters = request;
@ -252,7 +252,7 @@ function Astman() {
onSuccess: this.eventResponse,
onFailure: function(t) {
alert("Event Error: " + t.status + ": " + t.statusText);
},
}
};
opt.parameters="action=waitevent";
tmp = new Ajax.Request(this.url, opt);