adapted bootstrapping

This commit is contained in:
logsol 2012-07-22 01:34:18 +02:00
parent ec84e8d025
commit 36c0e34dc5
5 changed files with 28 additions and 15 deletions

11
app/Bootstrap/Client.js Executable file
View file

@ -0,0 +1,11 @@
requirejs.config({
baseUrl: 'app'
});
var inspector = {};
requirejs(["Bootstrap/Client"], function(Client) {
var client = new Client(location.href);
inspector.client = client;
});