Adding vs-repeat performance test sample.

This commit is contained in:
Gunther Brunner
2014-06-10 16:07:08 +09:00
parent f06035b8ac
commit bb70b0386d
7 changed files with 413 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
require('./vs-repeat.less')
require('angular-vs-repeat')
module.exports = angular.module('stf.vs-repeat', [
'vs-repeat'
])
.controller('PerfVsRepeatCtrl', require('./vs-repeat-controller'))
.controller('AppVsRepeatCtrl', require('./app-controller'))
.config(['$routeProvider', function ($routeProvider) {
$routeProvider.when('/test/samples/vs-repeat', {
template: require('./vs-repeat.html')
})
}])