fix(treeBenchmark): bootstrap only relevant portion to prevent angular from clobbering form

This commit is contained in:
Jeff Cross 2015-01-15 10:52:21 -08:00
parent a2b58202a0
commit dfcce3a789
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
import {getIntParameter, bindAction} from 'e2e_test_lib/benchmark_util';
export function main() {
angular.bootstrap(document.body, ['app']);
angular.bootstrap(document.querySelector('tree'), ['app']);
}
angular.module('app', [])