Preparing plugins for no-minify-in-core-policy

also making the file structure better with js and css folders for Realtime and LinkPreview
This commit is contained in:
Mikael Nordfeldth
2014-02-24 00:59:29 +01:00
parent 398491b39b
commit 97830b0701
17 changed files with 12 additions and 31 deletions

View File

@@ -0,0 +1,2 @@
TCPSocket = Orbited.TCPSocket;

View File

@@ -0,0 +1,24 @@
// Update the local timeline from a Orbited server
var OrbitedUpdater = function()
{
return {
init: function(server, port, timeline, username, password)
{
// set up stomp client.
stomp = new STOMPClient();
stomp.onmessageframe = function(frame) {
RealtimeUpdate.receive(JSON.parse(frame.body));
};
stomp.onconnectedframe = function() {
stomp.subscribe(timeline);
}
stomp.connect(server, port, username, password);
}
}
}();