On MacOS you can use brew, on Ubuntu you can use apt-get
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
.grid-container { | |
display: inline-grid; | |
grid-template-columns: auto auto auto; | |
} | |
.grid-item { | |
padding: 20px; | |
text-align: center; | |
} |
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
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
tagName: 'li', | |
classNames: ['flex items-center lh-copy pa3 ph0-l bb b--black-10'], | |
classNameBindings: ['thing.archive:strike-ns'], | |
click() { | |
this.get('onClick')(); | |
}, | |
}); |
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
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
tagName: 'li', | |
classNames: ['flex items-center lh-copy pa3 ph0-l bb b--black-10'], | |
}); |
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
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
tagName: 'li', | |
classNames: ['flex items-center lh-copy pa3 ph0-l bb b--black-10'], | |
classNameBindings: ['thing.archive:strike-ns'], | |
click() { | |
this.get('onClick')(); | |
}, | |
}); |
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
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
tagName: 'li', | |
classNames: ['flex items-center lh-copy pa3 ph0-l bb b--black-10'], | |
classNameBindings: ['thing.archive:strike-ns'], | |
click() { | |
this.get('onClick')(); | |
}, | |
}); |
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
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
tagName: 'li', | |
classNames: ['flex items-center lh-copy pa3 ph0-l bb b--black-10'], | |
}); |
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
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
model: [ | |
{ | |
name: 'Unibike Xenon Bike', | |
category: 'Sports & Outdoors', | |
imageUrl: 'http://tachyons.io/img/avatar-mrmrs.jpg', | |
since: '2014-08-30', | |
}, |
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
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Primer Workshop' | |
}); |
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
version: 2 | |
jobs: | |
build: | |
working_directory: ~/selleo-mail-log | |
docker: | |
- image: circleci/node:latest-browsers | |
steps: | |
- checkout | |
- restore_cache: | |
key: dependency-cache-{{ checksum "package.json" }} |
NewerOlder