make source git pull freindly, no need to copy files around when updating
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,23 @@
|
||||
(function() {
|
||||
var get = Ember.get, set = Ember.set, EmberHandlebars = Ember.Handlebars;
|
||||
|
||||
EmberHandlebars.registerHelper('group', function(options) {
|
||||
var data = options.data,
|
||||
fn = options.fn,
|
||||
view = data.view,
|
||||
childView;
|
||||
|
||||
childView = view.createChildView(Ember._MetamorphView, {
|
||||
context: get(view, 'context'),
|
||||
|
||||
template: function(context, options) {
|
||||
options.data.insideGroup = true;
|
||||
return fn(context, options);
|
||||
}
|
||||
});
|
||||
|
||||
view.appendChild(childView);
|
||||
});
|
||||
|
||||
})();
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user