angular-three-state-checkbox
Version:
Angular directive of three-state checkbox. Useful for sorting. Default template: 'Material design'
15 lines • 426 B
JavaScript
;
angular.module("demoApp", ['threeStateCheckbox'])
.controller('mainCtrl', [function() {
var mc = this;
mc.log = function () {
console.log(attributes);
};
mc.model = false;
mc.onChange = function(){
console.log("a");
};
mc.getStringModel = function(){
return JSON.stringify(mc.model);
}
}]);