How can I set custom data- attribute on the {{#linkTo}} helper? I want use this:
{{#linkTo \"foo\" data-toggle=\"dropdown\"}}foo{{/
@intuitivepixel
Thanks
U helped a lot. With that Information I've played arround with the LinkView and was able to find a generic solution:
Em.LinkView.reopen({
init: function() {
this._super();
var self = this;
Em.keys(this).forEach(function(key) {
if (key.substr(0, 5) === 'data-') {
self.get('attributeBindings').pushObject(key);
}
});
}
});