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({ | |
appName: 'Ember Twiddle', | |
model: Ember.Object.create({ | |
name: 'Sergio', | |
bio: 'Ogro malvado achuchable', | |
lovesEmber: true | |
}) | |
}); |
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.Component.extend({ | |
}); |
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
// By /u/loolo78. Use at you will. | |
// Find the Flair ID by inspecting your flair selection box. | |
// This script unfortunatly is not very "user" friendly. | |
// | |
var $flairs = $('.flairselectbtn'); | |
var config = { attributes: true, childList: true, characterData: true, subtree: true }; | |
function wait(index){ | |
var $flair = $flairs.eq(index), |