ฉันต้องการแก้ไขเล็กน้อยกับคำสั่งของบุคคลที่สาม (โดยเฉพาะ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 นี้ได้อย่างไร
$provide.decorator()
ดูคำตอบของฉันด้านล่าง