Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function init_smarttalk( args ) {
- smarttalk = new smarttalkObj( args );
- var uuid = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {var r = Math.random()*16|0,v=c=='x'?r:r&0x3|0x8;return v.toString(16);});
- if( !jQuery.cookie('_smarttalk') ) {
- jQuery.cookie('_smarttalk', uuid , { expires: 30, path: '/' });
- } else {
- //console.log( jQuery.cookie('_smarttalk') );
- }
- smarttalk.saveRecord();
- smarttalk.callWindow();
- jQuery(window).load( function() {
- jQuery( '#smart_close' ).on( 'click', 'a', function() {
- jQuery( "#smart_window" ).hide();
- jQuery( "#smart_overlay" ).hide();
- smarttalk.attempt();
- return false;
- });
- });
- }
Advertisement
Add Comment
Please, Sign In to add comment