Initial Commit from Ember CLI v2.5.0

This commit is contained in:
Tomster
2016-04-25 13:15:27 +03:00
commit 53d15517f7
37 changed files with 536 additions and 0 deletions

18
app/app.js Normal file
View File

@@ -0,0 +1,18 @@
import Ember from 'ember';
import Resolver from './resolver';
import loadInitializers from 'ember-load-initializers';
import config from './config/environment';
let App;
Ember.MODEL_FACTORY_INJECTIONS = true;
App = Ember.Application.extend({
modulePrefix: config.modulePrefix,
podModulePrefix: config.podModulePrefix,
Resolver
});
loadInitializers(App, config.modulePrefix);
export default App;

0
app/components/.gitkeep Normal file
View File

0
app/controllers/.gitkeep Normal file
View File

0
app/helpers/.gitkeep Normal file
View File

25
app/index.html Normal file
View File

@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>FiasFace</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
{{content-for "head"}}
<link rel="stylesheet" href="assets/vendor.css">
<link rel="stylesheet" href="assets/fias-face.css">
{{content-for "head-footer"}}
</head>
<body>
{{content-for "body"}}
<script src="assets/vendor.js"></script>
<script src="assets/fias-face.js"></script>
{{content-for "body-footer"}}
</body>
</html>

0
app/models/.gitkeep Normal file
View File

3
app/resolver.js Normal file
View File

@@ -0,0 +1,3 @@
import Resolver from 'ember-resolver';
export default Resolver;

11
app/router.js Normal file
View File

@@ -0,0 +1,11 @@
import Ember from 'ember';
import config from './config/environment';
const Router = Ember.Router.extend({
location: config.locationType
});
Router.map(function() {
});
export default Router;

0
app/routes/.gitkeep Normal file
View File

0
app/styles/app.css Normal file
View File

View File

@@ -0,0 +1,3 @@
<h2 id="title">Welcome to Ember</h2>
{{outlet}}

View File