Skip to content
This repository has been archived by the owner on Jan 23, 2022. It is now read-only.

Commit

Permalink
chore(ngdocs): reimplement disable ie warnings (a376ff3) and disable …
Browse files Browse the repository at this point in the history
…link to $animate
  • Loading branch information
m7r committed Jan 9, 2014
1 parent 6ffffe4 commit 986972b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ngdoc.js
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ Doc.prototype = {
});
dom.html('</ul>');
});
dom.html('<a href="api/ngAnimate.$animate">Click here</a> to learn more about the steps involved in the animation.');
// dom.html('<a href="api/ngAnimate.$animate">Click here</a> to learn more about the steps involved in the animation.');
}
if(params.length > 0) {
dom.html('<h2>Parameters</h2>');
Expand Down Expand Up @@ -661,13 +661,15 @@ Doc.prototype = {
dom.h('Usage', function() {
var restrict = self.restrict || 'A';

/*
if (restrict.match(/E/)) {
dom.html('<p>');
dom.text('This directive can be used as custom element, but be aware of ');
dom.tag('a', {href:'guide/ie'}, 'IE restrictions');
dom.text('.');
dom.html('</p>');
}
*/

if (self.usage) {
dom.tag('pre', function() {
Expand Down

0 comments on commit 986972b

Please sign in to comment.