From 736beecd7a69971b26bab4d7055976c1446c576c Mon Sep 17 00:00:00 2001 From: Donnelly Date: Tue, 28 Mar 2017 11:15:44 +0100 Subject: [PATCH] testing --- cheatfiles/Aurelia.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cheatfiles/Aurelia.md b/cheatfiles/Aurelia.md index c90e16f..a4f400a 100644 --- a/cheatfiles/Aurelia.md +++ b/cheatfiles/Aurelia.md @@ -19,6 +19,7 @@ > Currently, the Edge browser has a serious performance problem with its Promise implementation. This deficiency can greatly increase startup time of your app. If you are targeting the Edge browser, it is highly recommended that you use the [bluebird promise](http://bluebirdjs.com/docs/getting-started.html) library to replace Edge's native implementation. You can do this by simply referencing the library prior to loading system.js. ### Standard Startup Configuration + ```javascript export function configure(aurelia) { aurelia.use @@ -28,7 +29,7 @@ aurelia.start().then(() => aurelia.setRoot()); } ``` ---- + ```typescript import {Aurelia} from 'aurelia-framework';