mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 17:31:27 +00:00
107 lines
3.3 KiB
Text
107 lines
3.3 KiB
Text
<script type="text/javascript">
|
|
var played = false;
|
|
|
|
$(document).ready(function() {
|
|
$.PeriodicalUpdater("/gathers/" + <%= @gather.id %> + ".js", {
|
|
method: "GET",
|
|
type: "script",
|
|
minTimeout: 5000,
|
|
maxTimeout: 15000,
|
|
success: function(response) {
|
|
if (response.match(/Gather:voting/)) {
|
|
if (!played) {
|
|
$("#jquery_jplayer_1").jPlayer({
|
|
ready: function() {
|
|
$(this).jPlayer("setMedia", {
|
|
mp3: "http://www.ensl.org/sounds/gather-5.mp3"
|
|
}).jPlayer("play");
|
|
|
|
var click = document.ontouchstart === undefined ? 'click' : 'touchstart';
|
|
var kickoff = function () {
|
|
$("#jquery_jplayer_1").jPlayer("play");
|
|
document.documentElement.removeEventListener(click, kickoff, true);
|
|
};
|
|
|
|
document.documentElement.addEventListener(click, kickoff, true);
|
|
},
|
|
loop: true,
|
|
volume: 0.6,
|
|
swfPath: "/flash"
|
|
});
|
|
|
|
played = true
|
|
}
|
|
}
|
|
else if (response.length > 10) {
|
|
$("#jquery_jplayer_1").jPlayer("stop");
|
|
}
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<div id="jquery_jplayer_1"></div>
|
|
|
|
<div class="wide">
|
|
<h2 class="center">
|
|
<div class="left">
|
|
<small><small><%= link_to raw("«« First"), @gather.first %></small></small>
|
|
<%= link_to raw("Previous ‹‹"), @gather.previous_gather %>
|
|
</div>
|
|
<%= link_to @gather do %>
|
|
<%= @gather.category.to_s %> Gather
|
|
<% end %>
|
|
<div class="right">
|
|
<% if @gather.next_gather %>
|
|
<%= link_to raw("›› Next"), @gather.next_gather%>
|
|
<small><small><%= link_to raw("Last »»"), @gather.last %></small></small>
|
|
<% else %>
|
|
<%= raw("›› Next") %>
|
|
<small><small><%= raw("Last »»") %></small></small>
|
|
<% end %>
|
|
</div>
|
|
</h2>
|
|
|
|
<% if @gather and @gather.created_at > 24.hours.ago and @gather.status != Gather::STATE_FINISHED %>
|
|
<div class="box wide" id="gatherInfo">
|
|
<h3 class="center">
|
|
|
|
</h3>
|
|
|
|
<table class="wide" id="gatherInfoText">
|
|
<tr>
|
|
<td>
|
|
<b>Requirements</b><br />
|
|
- <a href="https://www.google.com/adsense/support/bin/answer.py?hl=en&answer=12654">Javascript</a> needs to enabled<br />
|
|
- Read <%= link_to "gather rules", article_url(Article::G_RULES) %> <br />
|
|
- Remove yourself if you leave
|
|
</td>
|
|
|
|
<td>
|
|
<b>Captains:</b><br />
|
|
- Vote for the <b>best</b> players<br />
|
|
- Captain 1 = 2nd most voted<br />
|
|
- Captain 2 = 1st most voted<br />
|
|
</td>
|
|
|
|
<td>
|
|
<b>Voice Comunication:</b><br />
|
|
- <%= link_to "Teamspeak 3", "http://www.teamspeak.com/?page=downloads" %> <br />
|
|
- <b>Server:</b> <a href="ts3server://ensl.org">ensl.org</a><br />
|
|
- <b>Password:</b> europe
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<div class="center">
|
|
<a href="javascript:;" id="gatherInfoHide">Hide information</a>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
|
|
<div id="gatherArea">
|
|
<%= render_gather %>
|
|
</div>
|
|
|
|
<%= render :partial => "shoutmsgs/index", :locals => {:object => @gather} %>
|
|
</div>
|