aboutsummaryrefslogtreecommitdiffstats
path: root/docs/docs.js
diff options
context:
space:
mode:
Diffstat (limited to 'docs/docs.js')
-rw-r--r--docs/docs.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/docs.js b/docs/docs.js
index 8c836049..a475b7b6 100644
--- a/docs/docs.js
+++ b/docs/docs.js
@@ -34,6 +34,12 @@ function DocsController($location, $browser, $window) {
$window.scroll(0,0);
SyntaxHighlighter.highlight();
};
+
+ this.getFeedbackUrl = function() {
+ return "mailto:angular@googlegroups.com?" +
+ "subject=" + escape("Feedback on " + $location.href) + "&" +
+ "body=" + escape("Hi there,\n\nI read " + $location.href + " and wanted to ask ....");
+ }
}