Skip to content

Commit

Permalink
feat(aurelia): initialize new templatingEngine api
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Oct 13, 2015
1 parent e19f56b commit e60e516
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/aurelia.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ import 'core-js';
import * as TheLogManager from 'aurelia-logging';
import {Container} from 'aurelia-dependency-injection';
import {Loader} from 'aurelia-loader';
import {BindingLanguage, ViewEngine, ViewSlot, ViewResources, CompositionEngine, Animator} from 'aurelia-templating';
import {BindingLanguage, ViewEngine, ViewSlot, ViewResources, CompositionEngine, Animator, templatingEngine} from 'aurelia-templating';
import {DOM, PLATFORM} from 'aurelia-pal';
import {bindingEngine} from 'aurelia-binding';
import {FrameworkConfiguration} from './framework-configuration';

function preventActionlessFormSubmit() {
Expand Down Expand Up @@ -71,7 +70,7 @@ export class Aurelia {
Animator.configureDefault(this.container);
}

bindingEngine.initialize(this.container);
templatingEngine.initialize(this.container);

this.logger.info('Aurelia Started');
let evt = DOM.createCustomEvent('aurelia-started', { bubbles: true, cancelable: true });
Expand Down

0 comments on commit e60e516

Please sign in to comment.