Every line of 'angular ng show' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
152 function ngShow() { 153 if (scope.ngShow === true) { 154 doShow(); 155 } else if (scope.ngShow === false) { 156 doHide(); 157 } 158 $ionicScrollDelegate.resize(); 159 }
92 show() { 93 this.visibleStatus = true; 94 this.addOverlay(); 95 }
161 function ngHide() { 162 if (scope.ngHide === true) { 163 doHide(); 164 } else if (scope.ngHide === false) { 165 doShow(); 166 } 167 $ionicScrollDelegate.resize(); 168 }
44 ngOnDestroy() { 45 this.unListenDocument(); 46 }
66 @Input('fxShow') set show(val) { this._cacheInput('show', val); }
50 show() { 51 this.hidableElement.show(); 52 }
141 function show($showContent, $showMenu) { 142 vue.$store.commit('updateApplication', { 143 contentOpen: $showContent, 144 menuOpen: $showMenu, 145 }); 146 147 if ($showContent === true) { 148 vue.$emit(DEFAULT_EVENT_CONTENT_OPENED); 149 } 150 }
218 show() { 219 this.dynamicOverlay.show(); 220 }
109 public show(): void { 110 if (!this.isExpanded) { 111 this.collapsing = true; 112 this.showBsCollapse.emit(); 113 this.isCollapse = false; 114 this.isCollapsing = true; 115 116 this.isExpanded = true; 117 this.isCollapsed = false; 118 119 const container = this._el.nativeElement; 120 121 container.classList.remove('collapse'); 122 container.classList.add('collapsing'); 123 124 setTimeout(() => { 125 this._renderer.setElementStyle(container, 'height', this.maxHeight + 'px'); 126 }, 10); 127 128 setTimeout(() => { 129 container.classList.remove('collapsing'); 130 container.classList.add('collapse'); 131 container.classList.add('show'); 132 this.shownBsCollapse.emit(); 133 this.collapsing = false; 134 }, this.animationTime - (this.animationTime * 0.5)); 135 this.expanded.emit(this); 136 } 137 }
44 show() { 45 this._collapsing = true; 46 this._collapse = true; 47 setTimeout(() => { 48 this._collapsing = false; 49 }, 4); 50 this.expanded.emit(); 51 }