Advertisement
Guest User

Untitled

a guest
Aug 5th, 2015
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1.  
  2. function ButtonSuccess( type ){
  3. this.color = type.color || 'green';
  4. }
  5.  
  6. function ButtonError( type ){
  7. this.color = type.color || 'red';
  8. }
  9.  
  10. function ButtonWarning( type ){
  11. this.color = type.color || 'yellow';
  12. }
  13.  
  14. function ButtonNormal( type ){
  15. this.color = type.color || 'blue';
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement