Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. svPanoShow = true;
  2. $("div #setSV").click(function() {
  3. if (svPanoShow) {
  4. $('div #svPano').show('fast', function() {
  5. initialize();
  6. });
  7. svPanoShow = false;
  8. } else {
  9. $('div #svPano').hide('fast');
  10. svPanoShow = true;
  11. }
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement