Skip to content

Commit

Permalink
delay clipboard shit till window load
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirish committed Apr 5, 2010
1 parent 77b8162 commit 5358f55
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion javascript/javascript.js
Original file line number Diff line number Diff line change
Expand Up @@ -511,9 +511,13 @@ $(document).ready(function () {
generator.applyStyles();
}

copypasta();

});

$(window).load(function(){
setTimeout(copypasta,1000);
})

window.css = {
'text-shadow': '2px 2px 2px #000;',
'filter': 'Shadow(Color=#666666, Direction=135, Strength=5);'
Expand Down

0 comments on commit 5358f55

Please sign in to comment.