server/src/main/webapp/static/js/main_coweb.js
author ymh <ymh.work@gmail.com>
Mon, 11 Feb 2013 12:39:35 +0100
changeset 55 17ff0be41a5b
parent 47 267d67791e05
permissions -rw-r--r--
Merge with bb63da14423953b348140c42460d8a46fc20de02

//
// 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;
    });
    
});