server/src/main/webapp/static/js/main_coweb.js
author ymh <ymh.work@gmail.com>
Mon, 31 Dec 2012 13:37:31 +0100
changeset 49 d0da34fda4b4
parent 47 267d67791e05
permissions -rw-r--r--
Merge with 869410bab434d795e30405f50f176a3aee14faad

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