Changeset 3688
- Timestamp:
- 07/03/07 00:29:32 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Plug-Ins/Web Interface/Resources/iphone/iphone.js
r3687 r3688 1 1 Colloquy = {}; 2 3 Colloquy.nextOrderIdentifier = 1; 2 4 3 5 Colloquy.loaded = function(event) … … 19 21 setTimeout(function() { window.scrollTo(0, 1) }, 100); 20 22 21 new Ajax.Request( "/command/setup?overrideStyle=info.colloquy.style.xml ", {23 new Ajax.Request( "/command/setup?overrideStyle=info.colloquy.style.xml&uinque=" + Math.round(Math.random() * 1000000), { 22 24 method: "get", 23 25 onSuccess: function( transport ) { … … 237 239 238 240 ChatController.checkActivity = function() { 239 new Ajax.Request( "/command/checkActivity ", {241 new Ajax.Request( "/command/checkActivity?order=" + Colloquy.nextOrderIdentifier++ + "&uinque=" + Math.round(Math.random() * 1000000), { 240 242 method: "get", 241 243 onSuccess: function( transport ) { … … 474 476 if( ! html.length ) return; 475 477 476 new Ajax.Request( "/command/send?panel=" + this.id , {478 new Ajax.Request( "/command/send?panel=" + this.id + "&order=" + Colloquy.nextOrderIdentifier++ + "&uinque=" + Math.round(Math.random() * 1000000), { 477 479 method: "post", 478 480 contentType: "text/html",
