扩展 AngularJs 指令
我想对第三方指令(特别是Angular UI Bootstrap)进行微小的修改。我只想添加到指令的范围中:pane
angular.module('ui.bootstrap.tabs', [])
.controller('TabsController', ['$scope', '$element', function($scope, $element) {
// various methods
}])
.directive('tabs', function() {
return {
// etc...
};
})
.directive('pane', ['$parse', function($parse) {
return {
require: '^tabs',
restrict: 'EA',
transclude: true,
scope:{
heading:'@',
disabled:'@' // <- ADDED SCOPE PROPERTY HERE
},
link: function(scope, element, attrs, tabsCtrl) {
// link function
},
templateUrl: 'template/tabs/pane.html',
replace: true
};
}]);
但我也想让Angular-Bootstrap与Bower保持同步。一旦我运行,我就会覆盖我的更改。bower update
那么,如何将此指令与此 bower 组件分开扩展呢?