如何配置来自第三方库的指令

时间:2016-09-22 13:13:36

标签: javascript angularjs

有没有办法配置来自第三方库的directive

我正在使用名为angular-tablesort的库,我想禁用它在scope: true中设置的directive选项:

tableSortModule.directive('tsWrapper', ['$parse', '$compile', function( $parse, $compile ) {
    return {
        scope: true,
        controller: ['$scope', 'tableSortConfig', function($scope, tableSortConfig ) { /* ... */ }
    }
}]);

有没有办法不修改这个库的源代码呢?

0 个答案:

没有答案