Skip to content

Commit

Permalink
Remove IE error message, and add a new message to state that it now w…
Browse files Browse the repository at this point in the history
…orks.

Also added my contact email address to the footer.
  • Loading branch information
karlqumu committed Mar 23, 2011
1 parent cafe3eb commit 0430393
Showing 1 changed file with 12 additions and 15 deletions.
27 changes: 12 additions & 15 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,10 @@ <h1 id="site-title">Sign Monkey</h1>
</div>

<!--[if IE]>
<div id="error" class="message ui-state-error ui-corner-all">
<div id="ie-working-message" class="message ui-state-highlight ui-corner-all">
<div class="close-button"><span class="ui-icon ui-icon-closethick">close</span></div>
<p>
Unfortunately Sign Monkey doesn't work on Internet Explorer yet :(
Chief monkey is working on fixing this, but until then
please try it in another browser such as <a href="http://www.google.com/chrome/">Google Chrome</a>, <a href="http://www.apple.com/safari/">Safari</a>, or <a href="http://www.mozilla.com/">Firefox</a>.
Sign Monkey now works in Internet Explorer! Bananas for all!
</p>
</div>
<![endif]-->
Expand All @@ -76,8 +74,8 @@ <h1 id="site-title">Sign Monkey</h1>
$('#message').hide();
}

if ($.cookie('error')) {
$('#error').hide();
if ($.cookie('ie-working-message')) {
$('#ie-working-message').hide();
}

$('.close-button').click(function() {
Expand All @@ -90,15 +88,9 @@ <h1 id="site-title">Sign Monkey</h1>
</div>

<script type="text/javascript">
var size = 1000;
// if ($('#page').width() <= 320) {
// size = 5;
// }

var defaultConfig = {
domain: "signmonkey.kuluvalley.com",
playInWidget: '#kv-single-widget',
size: size,
sortField: 'title',
sortDirection: 'asc',
search: true,
Expand Down Expand Up @@ -197,9 +189,14 @@ <h1 id="site-title">Sign Monkey</h1>
</div>

<div id="footer">
Made by <a href="http://monket.net/">Karl O'Keeffe</a>.
Videos powered by <a href="http://www.kuluvalley.com/">Kulu Valley</a>.
No monkeys were harmed in the making of this website.
<p>
Spotted an error or want to help out? Contact me at <a href="mailto:signmonkey@monket.net">signmonkey@monket.net</a>
</p>
<p>
Made by <a href="http://monket.net/">Karl O'Keeffe</a>.
Videos powered by <a href="http://www.kuluvalley.com/">Kulu Valley</a>.
No monkeys were harmed in the making of this website.
</p>
</div>


Expand Down

0 comments on commit 0430393

Please sign in to comment.