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
Ember.Editable = Ember.Mixin.create({ | |
_originalPropertyStates: Ember.Map.create(), | |
_isEditing: false, | |
isDirty: null, | |
init: function () { | |
this._super(); | |
}, | |
willDestroy: function () { |
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
Ember.Editable = Ember.Mixin.create({ | |
_originalPropertyStates: Ember.Map.create(), | |
_isEditing: false, | |
willDestroy: function () { | |
var $this = this; | |
for (var prop in this.getOwnProperties()) { | |
Ember.removeBeforeObserver($this, prop, $this, '_beforePropertyChange'); | |
//Ember.removeObserver($this, prop, $this, '_propertyChanged'); | |
} |
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
using System.IO; | |
using System.Text; | |
using System.Web; | |
using System.Web.Optimization; | |
using Jurassic; | |
namespace Fewt.Web | |
{ | |
public class EmberHandlebarsBundleTransform : IBundleTransform | |
{ |