blob: 5cb784db3ca54138692a010d2bd20dddd393a057 [file] [log] [blame]
/*
* Bootstrapping traceur compiler, polymer, and the app itself.
* @fileoverview
*/
window.addEventListener('polymer-ready', function(e) {
// alias view and pipe-viewer so external plugins can just reference it without full path.
System.paths = {
'*': '*.js',
'pipe-viewer': 'pipe-viewers/pipe-viewer.js',
'view': 'libs/mvc/view.js'
};
System.import('app').then(function(app) {
app.start();
}).catch(function(e) {
console.error(e);
});
});