An Ember application starts with its main template. Put your header, footer, and any other decorative content in application.handlebars.
<header>
<img src="masthead">
</header>
<footer>
| # Add a link to itself in its own node_modules directory: | |
| npm link && npm link app-name |
| var path = require('path'); | |
| /** | |
| * CSS transform dependencies | |
| */ | |
| var autoprefixer = require('autoprefixer-core'); | |
| var calc = require('rework-calc'); | |
| var color = require('rework-color-function'); | |
| var conformance = require('rework-suit-conformance'); |
| // Usage example: | |
| // | |
| // willTransitionTo(transition, params, query, callback) { | |
| // observeStore(DraftStore, s => s.isLoaded()).then(() => { | |
| // if (DraftStore.isMissingTitle()) { | |
| // transition.redirect('composeDraft', params); | |
| // } | |
| // }).finally(callback); | |
| // } |
| The MIT License (MIT) | |
| Copyright (c) 2014 Tomas Kafka | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: |
| function makeStyle(defaults, tagName) { | |
| tagName = tagName || 'div'; | |
| var Style = React.createClass({ | |
| getDefaultProps: function() { | |
| return assign({}, defaults); | |
| }, | |
| render: function() { | |
| var style = assign({}, this.props); | |
| delete style.children; |
| . | |
| ├── actions | |
| ├── stores | |
| ├── views | |
| │ ├── Anonymous | |
| │ │ ├── __tests__ | |
| │ │ ├── views | |
| │ │ │ ├── Home | |
| │ │ │ │ ├── __tests__ | |
| │ │ │ │ └── Handler.js |
| var React = require('react'); | |
| var warning = require('react/lib/warning'); | |
| var INTERACTIVE = { | |
| 'button': true | |
| }; | |
| var isInteractive = (tagName) => { | |
| return INTERACTIVE[tagName.tagName]; | |
| }; |