diff options
| author | Vojta Jina | 2011-08-10 11:51:24 +0200 | 
|---|---|---|
| committer | Igor Minar | 2011-08-18 23:46:51 -0700 | 
| commit | 99ee6f275af9aff33f24c86138d79ec30e77dcb3 (patch) | |
| tree | 305db67b234988086639b6a684898a714d08db18 | |
| parent | 21c4919a5b79e10729b36b65559f5d1ca5408ff4 (diff) | |
| download | angular.js-99ee6f275af9aff33f24c86138d79ec30e77dcb3.tar.bz2 | |
doc($browser): remove duplication of $browser to docs
This was causing to show up the "$browser" twice in the menu.
| -rw-r--r-- | src/AngularPublic.js | 10 | 
1 files changed, 1 insertions, 9 deletions
| diff --git a/src/AngularPublic.js b/src/AngularPublic.js index bd86a9be..77b43250 100644 --- a/src/AngularPublic.js +++ b/src/AngularPublic.js @@ -1,15 +1,7 @@  'use strict';  var browserSingleton; -/** - * @workInProgress - * @ngdoc service - * @name angular.service.$browser - * @requires $log - * - * @description - * Represents the browser. - */ +  angularService('$browser', function($log){    if (!browserSingleton) {      browserSingleton = new Browser(window, jqLite(window.document), jqLite(window.document.body), | 
