Guest User

Untitled

a guest
Apr 19th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <select ng-model="$ctrl.type">
  2. <option value="">none</option>
  3. <option value="1">1</option>
  4. <option value="2">2</option>
  5. </select>
  6.  
  7. <div ng-show="ctrl.type!=""" class="btn action-btn" ng-click="$ctrl.doSomething()">
  8. my button
  9. </div>
  10.  
  11. doSomething() {
  12. this.type = "";
  13. }
  14.  
  15. <div ng-show="ctrl.type!="''" class="btn action-btn" ng-click="$ctrl.doSomething()">
Add Comment
Please, Sign In to add comment