我已经看了三种不同的方法来缩小AngularJS脚本.但是,它们都没有解释我应该如何考虑自定义过滤器.我的代码格式如下:
app.controller("App", ["$scope","$timeout", function($scope, $timeout){...}]);
除了一些像这样的附加代码:
app.filter('unsafe', function($sce) { return function(val) { return $sce.trustAsHtml(val); }; });
当我缩小以上所有内容时,不再识别过滤器.我如何准备我的代码进行缩小?
app.filter('unsafe', ['$sce', function($sce) {
return function(val) {
return $sce.trustAsHtml(val);
};
}]);