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\nTwiddle", | |
}); |
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'; | |
import { Promise } from 'rsvp' | |
export default Ember.Controller.extend({ | |
appName: 'Template Numbers', | |
someBool: true, | |
init() { | |
this._super(...arguments) | |
this.send('fakeCallback') |
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
/** | |
* json2xml NodeJS Module - Convert an xml2js JSON object back to XML | |
* | |
* Redsandro - changed into requirable | |
* | |
* @author Derek Anderson | |
* @copyright 2011 Media Upstream | |
* @license MIT License | |
* @url https://gist.github.com/1495793 | |
* |