This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| if( preg_match('/iphone|android/i', $_SERVER['HTTP_USER_AGENT']) ) { | |
| include('index-mobile.html'); | |
| } | |
| else { | |
| include('index-desktop.html'); | |
| } | |
| ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $( "input[name|='untag']" ).click(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $('span').each(function( i ) { | |
| if( $(this).html() == 'Leave Group'){ | |
| $(this).click(); | |
| } | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $('button').each(function( i ) { | |
| if( $(this).html() == 'Leave Group'){ $(this).click(); } | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var edit = $('.uiPopover > a'); | |
| for (var i = 0; i < edit.length; i++) { edit[i].click(); }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $('span').each(function( i ) { | |
| if( $(this).html() == 'Report'){ $(this).click(); } | |
| if( $(this).html() == 'Report/Remove Tag'){ $(this).click(); } | |
| if( $(this).html() == 'Remove Tag...'){ $(this).click(); } | |
| if( $(this).html() == 'Delete This Photo'){ $(this).click(); } | |
| if( $(this).html() == 'Delete'){ $(this).click(); } | |
| if( $(this).html() == 'Delete...'){ $(this).click(); } | |
| if( $(this).html() == 'Unlike'){ $(this).click(); } | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $('button').each(function( i ) { | |
| if( $(this).html() == 'Continue'){ $(this).click(); } | |
| if( $(this).html() == 'Confirm'){ $(this).click(); } | |
| if( $(this).html() == 'Delete Post'){ $(this).click(); } | |
| if( $(this).html() == 'Remove Tag'){ $(this).click(); } | |
| if( $(this).html() == 'Remove Search'){ $(this).click(); } | |
| if( $(this).html() == 'Okay'){ $(this).click(); } | |
| }); | |
| $('span').each(function( i ) { | |
| if( $(this).html() == 'Close'){ $(this).click(); } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $('._4-hy').css('background-color','rgba(0, 0, 0, 0)'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "boxes" : [ { | |
| "box" : { | |
| "maxclass" : "comment", | |
| "text" : "WARNING: THIS IS VERY GLITCHY", | |
| "frgb" : 0.0, | |
| "numinlets" : 1, | |
| "fontsize" : 12.0, | |
| "numoutlets" : 0, | |
| "patching_rect" : [ 464.0, 344.0, 207.0, 20.0 ], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function unfriend() { | |
| window.scrollBy(0,113); | |
| setTimeout('unfriend()',2800); | |
| }; unfriend(); |
OlderNewer