10 lines
400 B
Text
10 lines
400 B
Text
-# Copyright (c) 2010, Diaspora Inc. This file is
|
|
-# licensed under the Affero General Public License version 3 or later. See
|
|
-# the COPYRIGHT file.
|
|
|
|
:javascript
|
|
WebSocket.__swfLocation = "#{javascript_path 'vendor/WebSocketMain.swf'}";
|
|
$(document).ready(function(){
|
|
WSR.initialize("#{(APP_CONFIG[:socket_secure])?'wss':'ws'}://#{request.host}:#{APP_CONFIG[:socket_port]}/");
|
|
});
|
|
|