Skip to content

Instantly share code, notes, and snippets.

@spion
Created October 9, 2012 10:55
Show Gist options
  • Save spion/3857951 to your computer and use it in GitHub Desktop.
Save spion/3857951 to your computer and use it in GitHub Desktop.
diff
index 625e4b3..f85b8dc 100644
--- a/tmpl/blackout.tmpl.js
+++ b/tmpl/blackout.tmpl.js
@@ -155,7 +155,9 @@
else document.cookie = 'blackoutonce=1';
}
if (opts['serious'] !== true){
- blackout.appendChild(create('p', {paddingTop: '250px', color: '#fff', "font-size":"18px"}, txt(Sop
+ var clickToContinue = create('p', {paddingTop: '250px', color: '#fff', "font-size":"18px"});
+ clickToContinue.innerHTML = SopaBlackout.CONTINUE_TEXT;
+ blackout.appendChild(clickToContinue);
addEvent(blackout, 'click', function(e){
body.removeChild(blackout);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment