aboutsummaryrefslogtreecommitdiffstats
path: root/docs/docs.js
diff options
context:
space:
mode:
Diffstat (limited to 'docs/docs.js')
-rw-r--r--docs/docs.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/docs.js b/docs/docs.js
index 7e6c2ac4..6bf86ed3 100644
--- a/docs/docs.js
+++ b/docs/docs.js
@@ -1,5 +1,3 @@
-SyntaxHighlighter['defaults'].toolbar = false;
-
DocsController.$inject = ['$location', '$browser', '$window'];
function DocsController($location, $browser, $window) {
this.pages = NG_PAGES;
@@ -38,10 +36,12 @@ function DocsController($location, $browser, $window) {
return "mailto:angular@googlegroups.com?" +
"subject=" + escape("Feedback on " + $location.href) + "&" +
"body=" + escape("Hi there,\n\nI read " + $location.href + " and wanted to ask ....");
- }
+ };
}
angular.filter('short', function(name){
return (name||'').split(/\./).pop();
-}); \ No newline at end of file
+});
+
+SyntaxHighlighter['defaults'].toolbar = false;