diff options
| author | dandoyon | 2011-09-19 20:11:32 -0700 |
|---|---|---|
| committer | Igor Minar | 2011-10-30 22:27:25 -0700 |
| commit | 28ed5ba46595a371bd734b92a6e4bb40d1013741 (patch) | |
| tree | a5e37419b4316ff1dc6677e3d56ef3d9b78a4c7c /docs/src/templates/index.html | |
| parent | 02dc81bae0011b7ae4190363be5fdd5db420aca9 (diff) | |
| download | angular.js-28ed5ba46595a371bd734b92a6e4bb40d1013741.tar.bz2 | |
feat(docs): disqus integration
- add style for disqus threads in css
- add loadDisqus method to be called afterPartialLoaded
- add div container for disqus threads
Diffstat (limited to 'docs/src/templates/index.html')
| -rw-r--r-- | docs/src/templates/index.html | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/docs/src/templates/index.html b/docs/src/templates/index.html index 64513d58..f0c195f9 100644 --- a/docs/src/templates/index.html +++ b/docs/src/templates/index.html @@ -114,10 +114,18 @@ <div id="loading" ng:show="loading">Loading...</div> - <div id="content-panel"> + <div class="content-panel"> <h2 ng:bind="partialTitle"></h2> <a id="feedback" ng:href="{{getFeedbackUrl()}}">Report an Issue or Ask a Question</a> - <ng:include id="content" src="getCurrentPartial()" onload="afterPartialLoaded()"></ng:include> + <ng:include id="content" + class="content-panel-content" + src="getCurrentPartial()" + onload="afterPartialLoaded()"></ng:include> + </div> + + <div id="disqus" class="content-panel"> + <h2>Discussion</h2> + <div id="disqus_thread" class="content-panel-content"></div> </div> <div id="footer" ng:cloak> |
