This file contains hidden or 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({ | |
field: Ember.computed(function() { | |
return Ember.Object.create({ | |
fieldCategoryFields: [ | |
Ember.Object.create({ | |
fieldCategory: Ember.Object.create({ | |
name: 'Category 1' | |
}) |
This file contains hidden or 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
" Use /bin/bash for executing shell commands | |
set shell=/bin/bash | |
" Do not save swp files in project | |
set directory=$HOME/.vim/swapfiles// | |
set nocompatible " be iMproved, required | |
filetype off " required | |
" set the runtime path to include Vundle and initialize |
OlderNewer