-
Other
- http://emberjs.jsbin.com/rwjblue/251/edit?html,js,output - Opening a window and communicate with it.
- http://emberjs.jsbin.com/rwjblue/55/edit - Using liquid-fire animations in globals mode.
- http://emberjs.jsbin.com/rwjblue/151/edit?js,output - Modify computed dependent keys after initialization.
-
POJO's
- http://emberjs.jsbin.com/rwjblue/253/edit?js,output - Defining computed properties on a POJO.
-
Routing
- http://emberjs.jsbin.com/rwjblue/254/ - Shows route hook ordering.
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
/** | |
* Tired of code reviewing for this.. | |
*/ | |
window.parseInt = (function(pI) { | |
return function() { | |
var args = Array.prototype.slice.call(arguments); | |
if(args.length === 1) { args.push(10); } | |
return pI.apply(this, args); | |
} |
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
App = Ember.Application.create({}); | |
var get = Ember.get, set = Ember.set, View = Ember.View; | |
App.FooBarComponent = Ember.Component.extend({ | |
test: 'I am from the component!', | |
layout: Ember.Handlebars.compile("{{yield}}"), | |
_yield: function(context, options) { | |
var view = options.data.view, | |
parentView = this._parentView, | |
template = get(this, 'template'); |
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
// | |
// Example: http://jsbin.com/welusizema/1/edit | |
// | |
// Since observers are not async, it's usually a good | |
// practice, when observing numerous properties, to | |
// wrap the observer function with an Ember.run.once. | |
// ``` | |
// fooBarChanged: Ember.observer('foo', 'bar', function () { | |
// Ember.run.once(this, this.scheduledChange); | |
// }), |
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
/* | |
* The `didCreate` event on a DS.Model does not behave like one would expect. | |
* It actually only ever fires when you createRecord AND then save the record. | |
* | |
* This custom eventing below is how you achieve a the expected event. | |
* This is useful in the case where you have relational objects that you want | |
* to auto-create when a record is created. Or, some custom logic to implement | |
* once the record is created. Likely very useful where you want to setup | |
* observers for things like validation. Placing them in `init` wouldn't | |
* be ideal since they will trigger the first time the model is initialized |
ember 1.10.0-beta-4 htmlbars http://jsbin.com/vunere/1/edit?html,js,output
ember 1.9.1 handlebars 2.0 http://jsbin.com/mahixo/1/edit?html,js,output
ember 1.9.0 handlebars 2.0
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
# deb cdrom:[Ubuntu 14.10 _Utopic Unicorn_ - Release amd64 (20141022.1)]/ utopic main restricted | |
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to | |
# newer versions of the distribution. | |
deb http://us.archive.ubuntu.com/ubuntu/ utopic main restricted | |
deb-src http://us.archive.ubuntu.com/ubuntu/ utopic main restricted | |
## Major bug fix updates produced after the final release of the | |
## distribution. | |
deb http://us.archive.ubuntu.com/ubuntu/ utopic-updates main restricted |
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
// | |
// https://jsfiddle.net/jmvf41f4/1/ | |
// | |
function get(object, path) { | |
var paths = path.split('.'); | |
var len = paths.length; | |
var out = object; | |
var i = 0; |
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
var Filter = require('broccoli-filter'); | |
var controller = new RegExp(/(^controllers\/)|(^models\/)|(^routes\/)/); | |
var jquery = new RegExp(/\W(\$\.)|(\.\$\.)|(\$\()/); | |
NoJquery.prototype = Object.create(Filter.prototype); | |
NoJquery.prototype.constructor = NoJquery; | |
function NoJquery(inputNode) { | |
if (!(this instanceof NoJquery)) { |
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
<style type="text/css"> | |
@media screen and (max-width: 767px) { | |
#a23d39cc article { | |
font-size: 25px; | |
} | |
} | |
#a23d39cc article { | |
font-size: 15px; | |
} |