14 lines
274 B
JavaScript
14 lines
274 B
JavaScript
/**
|
|
Instantiate your enyo/Application kind in this file. Note, application
|
|
rendering should be deferred until the DOM is ready by wrapping it in a
|
|
call to ready().
|
|
*/
|
|
|
|
var
|
|
ready = require('enyo/ready'),
|
|
App = require('./src/App');
|
|
|
|
ready(function () {
|
|
new App();
|
|
});
|