Changeset 319
- Timestamp:
- 06/27/08 01:40:51 (8 weeks ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/0.5/daemon/orbited/static/demos/xmpp/xmpp.js
r299 r319 146 146 xmpp.onMessage = onMessage; 147 147 xmpp.onSocketConnect = function() { 148 domain = prompt("Domain"," localhost");148 domain = prompt("Domain","marionet"); 149 149 if (domain) { 150 150 xmpp.connectServer(domain, connectSuccess, connectFailure); … … 152 152 } 153 153 //// 154 // 'localhost' IS A PLACEHOLDER 155 xmpp.connect('localhost', 5222); 156 // (CHANGE TO ADDRESS OF PHYSICAL MACHINE) 154 // 'mariobalibrera.com' is the machine running the ejabberd server 155 xmpp.connect('mariobalibrera.com', 5222); 157 156 //// 158 157 // success / failure callbacks