mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-26 19:20:24 +00:00
80 lines
2.8 KiB
JavaScript
80 lines
2.8 KiB
JavaScript
'use strict';
|
|
|
|
/**
|
|
* @ngdoc directive
|
|
* @name ng.directive:ngShow
|
|
*
|
|
* @description
|
|
* The `ngShow` and `ngHide` directives show or hide a portion of the DOM tree (HTML)
|
|
* conditionally.
|
|
*
|
|
* @element ANY
|
|
* @param {expression} ngShow If the {@link guide/expression expression} is truthy
|
|
* then the element is shown or hidden respectively.
|
|
*
|
|
* @example
|
|
<doc:example>
|
|
<doc:source>
|
|
Click me: <input type="checkbox" ng-model="checked"><br/>
|
|
Show: <span ng-show="checked">I show up when your checkbox is checked.</span> <br/>
|
|
Hide: <span ng-hide="checked">I hide when your checkbox is checked.</span>
|
|
</doc:source>
|
|
<doc:scenario>
|
|
it('should check ng-show / ng-hide', function() {
|
|
expect(element('.doc-example-live span:first:hidden').count()).toEqual(1);
|
|
expect(element('.doc-example-live span:last:visible').count()).toEqual(1);
|
|
|
|
input('checked').check();
|
|
|
|
expect(element('.doc-example-live span:first:visible').count()).toEqual(1);
|
|
expect(element('.doc-example-live span:last:hidden').count()).toEqual(1);
|
|
});
|
|
</doc:scenario>
|
|
</doc:example>
|
|
*/
|
|
//TODO(misko): refactor to remove element from the DOM
|
|
var ngShowDirective = ngDirective(function(scope, element, attr){
|
|
scope.$watch(attr.ngShow, function ngShowWatchAction(value){
|
|
element.css('display', toBoolean(value) ? '' : 'none');
|
|
});
|
|
});
|
|
|
|
|
|
/**
|
|
* @ngdoc directive
|
|
* @name ng.directive:ngHide
|
|
*
|
|
* @description
|
|
* The `ngHide` and `ngShow` directives hide or show a portion of the DOM tree (HTML)
|
|
* conditionally.
|
|
*
|
|
* @element ANY
|
|
* @param {expression} ngHide If the {@link guide/expression expression} is truthy then
|
|
* the element is shown or hidden respectively.
|
|
*
|
|
* @example
|
|
<doc:example>
|
|
<doc:source>
|
|
Click me: <input type="checkbox" ng-model="checked"><br/>
|
|
Show: <span ng-show="checked">I show up when you checkbox is checked?</span> <br/>
|
|
Hide: <span ng-hide="checked">I hide when you checkbox is checked?</span>
|
|
</doc:source>
|
|
<doc:scenario>
|
|
it('should check ng-show / ng-hide', function() {
|
|
expect(element('.doc-example-live span:first:hidden').count()).toEqual(1);
|
|
expect(element('.doc-example-live span:last:visible').count()).toEqual(1);
|
|
|
|
input('checked').check();
|
|
|
|
expect(element('.doc-example-live span:first:visible').count()).toEqual(1);
|
|
expect(element('.doc-example-live span:last:hidden').count()).toEqual(1);
|
|
});
|
|
</doc:scenario>
|
|
</doc:example>
|
|
*/
|
|
//TODO(misko): refactor to remove element from the DOM
|
|
var ngHideDirective = ngDirective(function(scope, element, attr){
|
|
scope.$watch(attr.ngHide, function ngHideWatchAction(value){
|
|
element.css('display', toBoolean(value) ? 'none' : '');
|
|
});
|
|
});
|