This repository has been archived by the owner on Jun 1, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 511
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(all): new simple html elements, css resources and text-based views
- Loading branch information
1 parent
ccb324c
commit b3e762c
Showing
8 changed files
with
20 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,6 +47,7 @@ System.config({ | |
"css": "github:systemjs/[email protected]", | ||
"fetch": "github:github/[email protected]", | ||
"font-awesome": "npm:[email protected]", | ||
"text": "github:systemjs/[email protected]", | ||
"github:aurelia/[email protected]": { | ||
"aurelia-metadata": "github:aurelia/[email protected]", | ||
"aurelia-templating": "github:aurelia/[email protected]" | ||
|
@@ -102,14 +103,14 @@ System.config({ | |
}, | ||
"github:aurelia/[email protected]": { | ||
"aurelia-loader": "github:aurelia/[email protected]", | ||
"aurelia-metadata": "github:aurelia/[email protected]" | ||
"aurelia-metadata": "github:aurelia/[email protected]", | ||
"webcomponentsjs": "github:webcomponents/[email protected]" | ||
}, | ||
"github:aurelia/[email protected]": { | ||
"aurelia-html-template-element": "github:aurelia/[email protected]", | ||
"aurelia-metadata": "github:aurelia/[email protected]", | ||
"aurelia-path": "github:aurelia/[email protected]", | ||
"core-js": "npm:[email protected]", | ||
"webcomponentsjs": "github:webcomponents/[email protected]" | ||
"core-js": "npm:[email protected]" | ||
}, | ||
"github:aurelia/[email protected]": { | ||
"aurelia-logging": "github:aurelia/[email protected]" | ||
|
@@ -302,4 +303,3 @@ System.config({ | |
} | ||
} | ||
}); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
import 'bootstrap'; | ||
|
||
export function configure(aurelia) { | ||
aurelia.use | ||
.standardConfiguration() | ||
.developmentLogging() | ||
.plugin('aurelia-animator-css'); | ||
.developmentLogging(); | ||
|
||
//Uncomment the line below to enable animation. | ||
//aurelia.use.plugin('aurelia-animator-css'); | ||
|
||
//In the next release of Aurelia, this API will be removed. | ||
//At that time, the text loader will become the default. | ||
//Anyone wanting to use HTMLImports, will install the appropriate plugin. | ||
aurelia.loader.useTextLoader(); | ||
|
||
aurelia.start().then(a => a.setRoot()); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters