greenkeeper[bot] on semver-7.0.0
chore(package): update semver t… (compare)
greenkeeper[bot] on can-super-model-2.0.0
fix(package): update can-super-… (compare)
greenkeeper[bot] on can-define-rest-model-2.0.0
fix(package): update can-define… (compare)
greenkeeper[bot] on can-define-realtime-rest-model-2.0.0
fix(package): update can-define… (compare)
greenkeeper[bot] on can-connect-ndjson-2.0.0
fix(package): update can-connec… (compare)
greenkeeper[bot] on @octokit
greenkeeper[bot] on @octokit
chore(package): update @octokit… (compare)
greenkeeper[bot] on @octokit
greenkeeper[bot] on @octokit
chore(package): update @octokit… (compare)
my-input
inserted event
<can-import>
?
I have a component like so:
<feature-icon type="photo" types="photos" isActive="{{isActive}}" hasMedia="{{hasMediaContent('photos')}}" profilesURL="options.profilesURL"></feature-icon>
The ‘hasMedia’ attribute changes, but the binding to ‘hasMedia’ doesn’t fire.
can.Component.extend({
tag: 'feature-icon',
template: can.view('/modules/feature-icon/feature-icon.stache'),
viewModel: can.Map.extend({
init: function () {
this.bind('hasMedia', function () {
debugger;
});
},
hasMedia: false
})
});