Advertisement
Guest User

Untitled

a guest
Feb 12th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. enum ModalTypes {
  2. Add,
  3. Edit
  4. }
  5.  
  6. public openManageModal(type: ModalTypes) {
  7. if (type == ModalTypes.Add) {
  8. //Open edit modal
  9. }
  10. else {
  11. //Open add modal
  12. }
  13. }
  14.  
  15. openManageModal(0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement