[Search] Starting on workers

Starting to work on using web workers to
do some of the work of GenericSearch.
Changed bundle.json accordingly.
This commit is contained in:
shale 2015-07-21 09:44:14 -07:00
parent c79d1f2648
commit 74961e1106

View File

@ -42,7 +42,7 @@
"provides": "searchService",
"type": "provider",
"implementation": "providers/GenericSearchProvider.js",
"depends": [ "objectService" ]
"depends": [ "$rootScope", "objectService", "workerService" ]
},
{
"provides": "searchService",
@ -55,6 +55,13 @@
"type": "aggregator",
"implementation": "SearchAggregator.js"
}
],
"workers": [
{
"key": "genericSearchWorker",
"scriptUrl": "workers/GenericSearchWorker.js",
"depends": [ "objectService" ]
}
]
}
}