diff options
author | Bernhard Posselt <nukeawhale@gmail.com> | 2013-05-26 15:25:59 +0200 |
---|---|---|
committer | Bernhard Posselt <nukeawhale@gmail.com> | 2013-05-26 15:25:59 +0200 |
commit | a0ef69bd869e1c5c6d9ddf3162a0cfc8570cabdd (patch) | |
tree | fb2bef7a152dbf36755245388b73a92d5a92a2e1 /docs | |
parent | 628d131d6b144d0837a98ba87dd7dcbd039b3b27 (diff) |
remove angular from example
Diffstat (limited to 'docs')
-rw-r--r-- | docs/plugins.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/plugins.rst b/docs/plugins.rst index d74bf0ccd..c255c162c 100644 --- a/docs/plugins.rst +++ b/docs/plugins.rst @@ -93,7 +93,7 @@ Inside your script you have to make sure that the News app is active. You can do .. code-block:: js - (function ($, angular, window, undefined) { + (function ($, window, undefined) { var document = window.document; @@ -105,7 +105,7 @@ Inside your script you have to make sure that the News app is active. You can do } }); - })(jQuery, angular, window); + })(jQuery, window); Custom user Interface |