diff options
| author | Di Peng | 2011-08-21 08:34:18 -0700 | 
|---|---|---|
| committer | Igor Minar | 2011-08-21 09:41:50 -0700 | 
| commit | 90ca6f983ea360cc016d6b4d056afeafed479c97 (patch) | |
| tree | b717d8338219cefc988afb64984e53357e423330 /docs/src | |
| parent | 57030bb6b483af4da08e3916b32c0b38c3345c2e (diff) | |
| download | angular.js-90ca6f983ea360cc016d6b4d056afeafed479c97.tar.bz2 | |
fix(docs): remove more unecessary use of hide() and show() method
- tutorial section of docs fails to render properly as
doc:tutorial-instructions widget uses deprecated show and hide methods
of jQlite.
Diffstat (limited to 'docs/src')
| -rw-r--r-- | docs/src/templates/doc_widgets.js | 2 | 
1 files changed, 0 insertions, 2 deletions
| diff --git a/docs/src/templates/doc_widgets.js b/docs/src/templates/doc_widgets.js index a5579720..277f9a51 100644 --- a/docs/src/templates/doc_widgets.js +++ b/docs/src/templates/doc_widgets.js @@ -181,7 +181,6 @@      '</div>';    angular.widget('doc:tutorial-instructions', function(element) { -    element.hide();      this.descend(true);      var tabs = angular.element(HTML_TPL.replace('{show}', element.attr('show') || 'false')), @@ -207,7 +206,6 @@      element.html('');      element.append(tabs); -    element.show();    }); | 
