diff -r 7e132e2a48ca -r 267d67791e05 server/src/main/webapp/static/js/main_coweb.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/server/src/main/webapp/static/js/main_coweb.js Tue Dec 25 21:29:11 2012 +0100 @@ -0,0 +1,24 @@ +// +// Cooperative web application template. +// +// Copyright (c) The Dojo Foundation 2011. All Rights Reserved. +// + +// assumes admin servlet deployed with the application +var cowebConfig = { + adminUrl : './admin' +}; + +//require(['corenkan']); + +require({moduleUrl : 'lib'}, + ['coweb/main','dojo', 'corenkan'], +function(coweb, dojo, corenkan) { + // do application setup here + + dojo.ready(function() { + //this.collab = corenkan.app.collab; + }); + +}); +