Guest User

Untitled

a guest
Jan 22nd, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. $doc.bind("dialogopen dialogclose", function ( event ) {
  2. if ( event.type === "dialogopen" ) {
  3. ++openDialogs;
  4. } else {
  5. if ( openDialogs > 0 ) {
  6. --openDialogs;
  7. } //if
  8. }
  9. });
Add Comment
Please, Sign In to add comment