diff options
Diffstat (limited to 'src/AngularPublic.js')
| -rw-r--r-- | src/AngularPublic.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/AngularPublic.js b/src/AngularPublic.js index e9f20b59..40425b8d 100644 --- a/src/AngularPublic.js +++ b/src/AngularPublic.js @@ -4,9 +4,9 @@ angularService('$browser', function browserFactory(){ browserSingleton = new Browser( window.location, jqLite(window.document), - jqLite(window.document.getElementsByTagName('head')[0])); - browserSingleton.startUrlWatcher(); - browserSingleton.startCookieWatcher(); + jqLite(window.document.getElementsByTagName('head')[0]), + XHR); + browserSingleton.startPoller(50, function(delay, fn){setTimeout(delay,fn);}); browserSingleton.bind(); } return browserSingleton; |
