We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97a1b39 commit 474a033Copy full SHA for 474a033
benchmarks/largetable-bp/app.js
@@ -1,5 +1,11 @@
1
var app = angular.module('largetableBenchmark', []);
2
3
+app.config(function($compileProvider) {
4
+ if ($compileProvider.debugInfoEnabled) {
5
+ $compileProvider.debugInfoEnabled(false);
6
+ }
7
+});
8
+
9
app.filter('noop', function() {
10
return function(input) {
11
return input;
0 commit comments