aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src
diff options
context:
space:
mode:
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/templates/docs.css22
-rw-r--r--docs/src/templates/docs.js4
2 files changed, 24 insertions, 2 deletions
diff --git a/docs/src/templates/docs.css b/docs/src/templates/docs.css
index 4baea33c..3f53b3dd 100644
--- a/docs/src/templates/docs.css
+++ b/docs/src/templates/docs.css
@@ -398,3 +398,25 @@ li {
margin: 0em 2em 1em 0em;
float:right;
}
+
+.table {
+ border-collapse: collapse;
+}
+
+.table th:first-child {
+ text-align: right;
+}
+
+.table th,
+.table td {
+ border: 1px solid black;
+ padding: .5em 1em;
+}
+.table th {
+ white-space: nowrap;
+}
+
+.table th.section {
+ text-align: left;
+ background-color: lightgray;
+}
diff --git a/docs/src/templates/docs.js b/docs/src/templates/docs.js
index 7efb2a5e..de6130dc 100644
--- a/docs/src/templates/docs.js
+++ b/docs/src/templates/docs.js
@@ -17,7 +17,7 @@ function DocsController($location, $browser, $window, $cookies) {
$location.hashPath = '!/api';
}
- this.$watch('$location.hashPath', function(hashPath) {
+ this.$watch('$location.hashPath', function(scope, hashPath) {
if (hashPath.match(/^!/)) {
var parts = hashPath.substring(1).split('/');
self.sectionId = parts[1];
@@ -36,7 +36,7 @@ function DocsController($location, $browser, $window, $cookies) {
delete self.partialId;
}
}
- });
+ })();
this.getUrl = function(page){
return '#!/' + page.section + '/' + page.id;