Skip to content

Instantly share code, notes, and snippets.

View fonsecajavier's full-sized avatar

Javier Fonseca fonsecajavier

  • Koombea
  • Barranquilla, Colombia
View GitHub Profile
@fonsecajavier
fonsecajavier / iframe_header_code.html
Last active August 26, 2016 23:05 — forked from jtrezza/iframe_header_code.html
Injected snippet for Welltok surveys in Qualtrics
<head>
<script type="text/javascript">
window.iFrameResizer = {
readyCallback: function(){
parentIFrame.sendMessage(documentHeight())
}
}
function documentHeight() {
return Math.max(
document.documentElement.clientHeight,
@fonsecajavier
fonsecajavier / factories.rb
Created January 7, 2012 04:33 — forked from robertomiranda/factories.rb
Simulate Paperclip Attachments With FactoryGirl
Factory.define :item do |f|
include ActionDispatch::TestProcess
f.name "Macbook Pro 15"
f.price_in_dollars 1500
f.photo Rack::Test::UploadedFile.new(File.join(Rails.root, 'spec', 'support', 'rails.png'), 'image/png')
end