aboutsummaryrefslogtreecommitdiffstats
path: root/src/AngularPublic.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/AngularPublic.js')
-rw-r--r--src/AngularPublic.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/AngularPublic.js b/src/AngularPublic.js
index 476de3e3..f63948d8 100644
--- a/src/AngularPublic.js
+++ b/src/AngularPublic.js
@@ -4,8 +4,9 @@ var browserSingleton;
angularService('$browser', function($log){
if (!browserSingleton) {
+ // TODO(vojta): inject $sniffer service when implemented
browserSingleton = new Browser(window, jqLite(window.document), jqLite(window.document.body),
- XHR, $log);
+ XHR, $log, {});
browserSingleton.bind();
}
return browserSingleton;