10 lines
398 B
Text
10 lines
398 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("#{(AppConfig[:socket_secure])?'wss':'ws'}://#{request.host}:#{AppConfig[:socket_port]}/");
|
|
});
|
|
|