Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. Popup.prompt('Type your name below', 'What\'s your name?', {
  2. placeholder: 'Placeholder yo',
  3. type: 'text'
  4. }, {
  5. text: 'Save',
  6. className: 'success',
  7. action: function (Box) {
  8. Popup.alert('Your name is: ' + Box.value);
  9. Box.close();
  10. }
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement