Activity log for bug #1210979

Date Who What changed Old value New value Message
2013-08-11 12:33:34 Thomas bug added bug
2013-08-11 12:38:01 Thomas description When I use the Unity.Notification.showNotification() function in my own webapp I have each notification twice. For exemple : function musicPlayerSetup() { Unity.MediaPlayer.init("Deezer.com"); var i = 0; setInterval(wrapCallback(function retry() { Unity.Notification.showNotification("Number : " + i,"Test",false); i = i + 1; }), 1000); } It sends 2 notifications for each "Number" When I use the Unity.Notification.showNotification() function in my own webapp I have each notification twice. For exemple : function musicPlayerSetup() {     Unity.MediaPlayer.init("Deezer.com");     var i = 0;     setInterval(wrapCallback(function retry() {  Unity.Notification.showNotification("Number : " + i,"Test",false);  i = i + 1;     }), 5000); } It sends 2 notifications for each "Number"