noteBtn.directive.js 537 B

123456789101112131415161718
  1. angular.module('kityminderEditor')
  2. .directive('noteBtn', ['valueTransfer', function(valueTransfer) {
  3. return {
  4. restrict: 'E',
  5. templateUrl: 'ui/directive/noteBtn/noteBtn.html',
  6. scope: {
  7. minder: '='
  8. },
  9. replace: true,
  10. link: function($scope) {
  11. var minder = $scope.minder;
  12. $scope.addNote =function() {
  13. valueTransfer.noteEditorOpen = true;
  14. };
  15. }
  16. }
  17. }]);