This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<tr style="background-color: lightgray;"> | |
<td class="Rank">1</td> | |
<td class="Trending">+1</td> | |
<td class="Name">Nathan Ballard</td> | |
<td class="Wins"><span>Hobby Stock/</span><br><span>Sportsmen</span></td> | |
<td class="Thoughts">Here's the deal: Once again, I couldn't decide among the top three (also Driver of the Year finalists) so I went with wins this season, and Ballard is tops with 27. He's had by far the best year of his career with two (potentially) track titles in his Hobby Stock, and won five races in Sportsmen at Hawkeye Downs. He's been the best Hobby Stock in the area all season - and it's not close.</td> | |
</tr> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table style="width: 100%;"> | |
<thead> | |
<tr class="hide-700-important"> | |
<th class="Rank">RANK</th> | |
<th class="Trending">+/-</th> | |
<th class="Name"h>NAME</th> | |
<th class="Wins">CLASS</th> | |
<th class="Thoughts">THOUGHTS</th> | |
</tr> | |
</thead> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var map; | |
var geocoder; | |
Event.observe(window, 'load', codeAddress); | |
function initialize(latlng) { | |
latlng = new google.maps.LatLng(41.6591, -91.5319); | |
var myOptions = { | |
zoom: 15, | |
center: latlng, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="left"> | |
<h3><a href="http://thegazette.com/data/top-paid-doctors" target="_blank">Highest paid doctors in Iowa</a></h3> | |
<a href="http://thegazette.com/data/top-paid-doctors" target="_blank"><img style="width: 100%;" src="http://thegazette.com/Includes/data/projects/top-paid-doctors/ss.jpg" alt=""></a> | |
<p class="embed-subhead">Click to find out if your doctor is among the highest paid doctors in Iowa.</p> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%ul.quiz-submit{:data => {:topic => "Category"}} | |
-@related_events.each do |e| | |
= render "events/event_result", event: e | |
%li.square.module.survey | |
%p | |
%strong Which type of event category do you prefer? | |
.btn-container | |
%button.answer-btn.btn-large.link | |
=fa_icon('compass') | |
%span.text |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var $input_one = $('#input-calendar-1 .datepicker').pickadate({ | |
'options_go_here': 'text' | |
}); | |
var picker_one = $input_one.pickadate('picker'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extend TimeSplitter::Accessors | |
split_accessor :start_time, default: ->{Time.zone.parse('00:00:00')} | |
split_accessor :end_time, default: ->{Time.zone.parse('00:00:00')} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if params[:event][:start_time_time].to_time >= params[:event][:end_time_time].to_time | |
@event = Event.new(event_params) | |
@event.errors[:base] << "The end time must be after the start time." | |
else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body div.container { | |
//This is causing some weird scrolling on certain pages. Let's only apply it where we absolutely need it. | |
//min-height:100%; | |
position:relative; | |
} |