2013-10-19 11:10:43 +00:00
|
|
|
<div id='slideshow-<%= @ad_banner.title.dehumanize %>' class="cycle-slideshow" data-cycle-timeout="<%= @ad_banner.timeout_millisecond %>" data-cycle-random='true' style="z-index: 0">
|
|
|
|
<% @ad_banner.ad_images.can_display.each do |image| %>
|
2013-10-18 07:25:19 +00:00
|
|
|
<div class="slidebanner"><%= image_tag image.file.url, :class => 'slideImg' %></div>
|
2012-12-19 19:21:50 +00:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<div class="newlist clear">
|
|
|
|
<% @bulletins.each do |bulletin| %>
|
|
|
|
<div class="newitem">
|
|
|
|
<div class="newpic">
|
|
|
|
<%= image_tag bulletin.image.url %>
|
|
|
|
</div>
|
|
|
|
<h3 class="newstitle">
|
2013-01-16 00:14:42 +00:00
|
|
|
<%= link_to bulletin.title, mobile_announcement_content_path(:app => params[:app], :id => bulletin) %>
|
2012-12-19 19:21:50 +00:00
|
|
|
</h3>
|
|
|
|
<p class="newsDate"><%= display_date(bulletin.postdate) %></p>
|
|
|
|
<div class="newsummary"><%= bulletin.subtitle %></div>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
2013-01-11 10:34:20 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<script type='text/javascript'>
|
|
|
|
var $effect = "<%= @ad_banner.ad_fx.nil? ? 'fade': @ad_banner.ad_fx %>"
|
|
|
|
var $timeout = "<%= @ad_banner.transition_msec %>"
|
2013-01-31 10:56:45 +00:00
|
|
|
var $info = "<%= t('mobile.location_description').html_safe %>"
|
2013-10-19 11:10:43 +00:00
|
|
|
$(function(){
|
|
|
|
if($("#slideshow-<%= @ad_banner.title.dehumanize %> img").length > 1){
|
|
|
|
var a = [];
|
|
|
|
<% @ad_banner.ad_images.can_display.each do |image| %>
|
|
|
|
a.push("<%= image.file.url %>");
|
|
|
|
<% end %>
|
|
|
|
$.preload(a, 2, function(){
|
|
|
|
$('.orbit-cycle-slideshow').cycle();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
$("#slideshow-<%= @ad_banner.title.dehumanize %> img").show()
|
|
|
|
}
|
|
|
|
});
|
2012-12-19 19:21:50 +00:00
|
|
|
</script>
|