mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 10:37:34 +00:00
22 lines
No EOL
427 B
JavaScript
Executable file
22 lines
No EOL
427 B
JavaScript
Executable file
requirejs.config({
|
|
baseUrl: 'app'
|
|
});
|
|
|
|
var inspector = {};
|
|
|
|
requirejs(["Bootstrap/Client"], function(Client) {
|
|
|
|
var options = {
|
|
"reconnect": false,
|
|
"reconnection delay": 500,
|
|
"max reconnection attempts": 10,
|
|
|
|
"transports": [
|
|
"websocket",
|
|
"flashsocket"
|
|
],
|
|
};
|
|
|
|
var client = new Client(location.href, options);
|
|
inspector.client = client;
|
|
}); |