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
$(document).ready(function() { | |
var $counter = $('<p class="viewport-width-counter" />'); | |
$('html').append($counter); | |
if ($('p.viewport-width-counter').length) { | |
$counter.css({ | |
'position': 'fixed', | |
'top': 0, |
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
<video controls> | |
<source src="http://www.mundihomes.com/inc/vid/morganville_exterior.theora.ogv" type="video/ogg" codecs="theora, vorbis"> | |
</video> |
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
<%= form_for(@contact) do |f| %> | |
<% if @contact.errors.any? %> | |
<div id="error_explanation"> | |
<h3><%= pluralize(@contact.errors.count, "error") %> prohibited this contact from being saved:</h2> | |
<ul> | |
<% @contact.errors.full_messages.each do |msg| %> | |
<li><%= msg %></li> | |
<% end %> | |
</ul> |
NewerOlder