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.
This commit is contained in:
Di Peng 2011-08-21 08:34:18 -07:00 committed by Igor Minar
parent 57030bb6b4
commit 90ca6f983e

View file

@ -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();
});