Last active
August 29, 2015 14:21
-
-
Save delfrrr/4268fd6a429738849514 to your computer and use it in GitHub Desktop.
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
BEM.Model.Attribute.delc('custom', { | |
parse: function () { | |
//.. | |
} | |
}); | |
BEM.Model.delc('model', { | |
attributes: { | |
a: { | |
type: 'custom' | |
}, | |
collection: { | |
type: 'model-list', | |
modelType: 'model' | |
} | |
} | |
}); | |
var model = BEM.blocks['model'].create(); | |
var model = BN('model').create(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment