Skip to content

Commit

Permalink
upgrading javascript-modern to 3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Devendra committed Dec 2, 2012
1 parent e910b09 commit d924699
Show file tree
Hide file tree
Showing 12 changed files with 1,369 additions and 0 deletions.
59 changes: 59 additions & 0 deletions javascript-modern/3.3.1/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# PubNub HTML5 Modern JavaScript Library

For a faster PubNub load, use the PubNub HTML5 Modern JavaScript
Library which is `CommonJS` and HTML5 `WebWorker` Ready.

#### Supported Browsers:

- firefox/3.6'
- firefox/9.0'
- firefox/10.0'
- chrome/16.0'
- chrome/17.0'
- iexplore/9.0'
- safari/5.1'

```html
<script src=pubnub-3.3.js></script>
<script>(function(){
// ----------------------------------
// INIT PUBNUB
// ----------------------------------
var pubnub = PUBNUB({
publish_key : 'PUBLISH_KEY_HERE',
subscribe_key : 'SUBSCRIBE_KEY_HERE',
ssl : false,
origin : 'pubsub.pubnub.com'
});
// ----------------------------------
// LISTEN FOR MESSAGES
// ----------------------------------
pubnub.subscribe({
restore : true,
connect : send_hello,
channel : 'my_channel',
callback : function(message) {
console.log(JSON.stringify(message));
},
disconnect : function() {
console.log("Connection Lost");
}
});
// ----------------------------------
// SEND MESSAGE
// ----------------------------------
function send_hello() {
pubnub.publish({
channel : 'my_channel',
message : { example : "Hello World!" },
callback : function(info) {
console.log(JSON.stringify(info));
}
});
}
})();</script>

```

Loading

0 comments on commit d924699

Please sign in to comment.