Skip to content

Commit

Permalink
v1.3 - removes processed highlight on button press
Browse files Browse the repository at this point in the history
  • Loading branch information
andryou committed Apr 14, 2016
1 parent 34c46f9 commit a9ba08e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion userscript.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// @include https://www.facebook.com/*/allactivity*
// @require http://code.jquery.com/jquery-1.7.1.min.js
// @grant none
// @version 1.2
// @version 1.3
// @description Purge and/or Hide all your activity on Facebook to date.
// ==/UserScript==

Expand Down Expand Up @@ -47,6 +47,7 @@ function triggerpurge() {
firstrun = false;
retry = 0;
mindays = 60 * 60 * 24 * parseInt($('#andrewfbmin').val());
$('.fbprocessed_generic').removeClass('fbprocessed_generic');
andrewhandler('purge');
}
}
Expand All @@ -56,6 +57,7 @@ function triggerhide() {
firstrun = false;
retry = 0;
mindays = 60 * 60 * 24 * parseInt($('#andrewfbmin').val());
$('.fbprocessed_generic').removeClass('fbprocessed_generic');
andrewhandler('hide');
}
}
Expand Down

0 comments on commit a9ba08e

Please sign in to comment.