26a5779cdd
Closes #13976
10 lines
242 B
JavaScript
10 lines
242 B
JavaScript
'use strict';
|
|
|
|
angular.module('repeatAnimateBenchmark', ['ngAnimate'])
|
|
.config(function($animateProvider) {
|
|
$animateProvider.classNameFilter(/animate-/);
|
|
})
|
|
.run(function($rootScope) {
|
|
$rootScope.fileType = 'classfilter';
|
|
});
|