mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 10:37:34 +00:00
11 lines
No EOL
186 B
JavaScript
Executable file
11 lines
No EOL
186 B
JavaScript
Executable file
requirejs.config({
|
|
baseUrl: 'app'
|
|
});
|
|
|
|
var inspector = {};
|
|
|
|
requirejs(["Bootstrap/Client"], function(Client) {
|
|
|
|
var client = new Client(location.href);
|
|
inspector.client = client;
|
|
}); |