Skip to content

Commit

Permalink
Handle IE7/8 js exceptions
Browse files Browse the repository at this point in the history
closes: #16
  • Loading branch information
vinilios committed Nov 9, 2012
1 parent 732f8f1 commit 420b40f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion heliosbooth/js/booth.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@

$(document).ready(function(){
$("title, #banner h1").content('PAGE_TITLE');
try {
$("title, #banner h1").content('PAGE_TITLE');
} catch (err) {}
});

BOOTH = {};
Expand Down
2 changes: 1 addition & 1 deletion heliosbooth/vote.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
</div>
</div>

<script language="javascript" src="js/booth.js?d=20121031"></script>
<script language="javascript" src="js/booth.js?d=20121102"></script>

<div id="page" class="row">
<div class="columns twelve">
Expand Down

0 comments on commit 420b40f

Please sign in to comment.