Files
angular.js/benchmarks/repeat-animate-bp/app-classfilter.js
T
2018-06-25 16:54:33 +02:00

10 lines
242 B
JavaScript

'use strict';
angular.module('repeatAnimateBenchmark', ['ngAnimate'])
.config(function($animateProvider) {
$animateProvider.classNameFilter(/animate-/);
})
.run(function($rootScope) {
$rootScope.fileType = 'classfilter';
});