Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit a281b5a

Browse files
committed
fixup! chore(benchmarks): add basic animation benchmark
1 parent 06124e3 commit a281b5a

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

benchmarks/animation-bp/app.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
'use strict';
22

3-
angular.
4-
module('animationBenchmark', ['ngAnimate'], config).
5-
controller('BenchmarkController', BenchmarkController);
3+
angular
4+
.module('animationBenchmark', ['ngAnimate'], config)
5+
.controller('BenchmarkController', BenchmarkController);
66

77
// Functions - Definitions
88
function config($compileProvider) {
9-
$compileProvider.
10-
commentDirectivesEnabled(false).
11-
cssClassDirectivesEnabled(false).
12-
debugInfoEnabled(false);
9+
$compileProvider
10+
.commentDirectivesEnabled(false)
11+
.cssClassDirectivesEnabled(false)
12+
.debugInfoEnabled(false);
1313
}
1414

1515
function BenchmarkController($scope) {

benchmarks/animation-bp/main.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[ng-cloak] { display: none !important; }
33
.animation-container .ng-enter,
44
.animation-container .ng-leave {
5-
transition: all 0.1s
5+
transition: all 0.1s;
66
}
77

88
.animation-container .ng-enter,

0 commit comments

Comments
 (0)