Skip to content

Commit

Permalink
Dear God can we lose the stupid previews already?
Browse files Browse the repository at this point in the history
  • Loading branch information
sjl committed Jul 12, 2011
1 parent 6deb600 commit a2b8320
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .hgrc
Expand Up @@ -113,6 +113,9 @@ cmm = commit -m 'Merge.'
mergelocal = !$HG --config ui.merge=internal:local merge $@
mergeother = !$HG --config ui.merge=internal:other merge $@
mergefail = !$HG --config ui.merge=internal:fail merge $@
takelocal = !"$HG" revert --rev 'p1()' $@ && "$HG" resolve -m $@
takeother = !"$HG" revert --rev 'p2()' $@ && "$HG" resolve -m $@


fdiff = diff -U 10000000000000
qfdiff = qdiff -U 10000000000000
Expand Down
1 change: 1 addition & 0 deletions dotjs/encrypted.google.com.js
18 changes: 18 additions & 0 deletions dotjs/google.com.js
@@ -0,0 +1,18 @@
$(function() {
var css = ".vspib, .vspi {display: none;} #vspb {display: none;}";
if (typeof GM_addStyle != "undefined") {
GM_addStyle(css);
} else if (typeof PRO_addStyle != "undefined") {
PRO_addStyle(css);
} else if (typeof addStyle != "undefined") {
addStyle(css);
} else {
var heads = document.getElementsByTagName("head");
if (heads.length > 0) {
var node = document.createElement("style");
node.type = "text/css";
node.appendChild(document.createTextNode(css));
heads[0].appendChild(node);
}
}
})();

0 comments on commit a2b8320

Please sign in to comment.