search for: lowpro

Displaying 7 results from an estimated 7 matches for "lowpro".

2007 Nov 08
1
Prototype 1.6 and Lowpro 0.5
If you''re using Lowpro 0.5 from the trunk, you''ll need to append this to fix the broken Event.onReady method: Object.extend(Event, { onReady : function(f) { document.observe(''dom:loaded'', f); } }); Basically "contentloaded" changed to "dom:loaded" between rc0 and r...
2007 Aug 20
3
Contribution on extending createElement
Hi all, I work a lot with scripts that modify the DOM, and I have always found quite annoying that the code would always get very verbose as soon as I wanted to create even simple structures : var my_div = document.createElement(''div''); var my_anchor = document.createElement(''a''); my_anchor.setAttribute(''href'',my_link); var my_text =
2008 Jun 18
4
clear search box the first time it's selected
Hi - I''m trying to implement a search box that has a pre-filled message "enter search text." The first time it''s selected, I''d like it to clear out, but after that, I''d like it to remain. I imagine lots of people have done this, any ideas how to accomplish this? Thanks, Dino --~--~---------~--~----~------------~-------~--~----~ You received this
2008 Apr 20
2
mod_rails showing plain text instead of actual page
...quot; /><![endif]--> <script src="/javascripts/prototype.js?1208530127" type="text/ javascript"></script> <script src="/javascripts/effects.js?1208530126" type="text/ javascript"></script> <script src="/javascripts/lowpro.js?1208530126" type="text/ javascript"></script> <script src="/javascripts/time.js?1208530127" type="text/javascript"></ script> <script src="/javascripts/application.js?1208530126" type="text/ javascript"></script...
2007 Jul 14
8
Specing Layouts
Hi, I''ve just started to try and spec my application.html.erb layout as one of the view specs but it totally barfs. I''m guessing that it''s due to the yield statements in the layout. Any clues as to how to proceed? Cheers Daniel -------------- next part -------------- An HTML attachment was scrubbed... URL:
2012 Aug 13
9
Using Jquery plugin "tokenInput" with rails
Hi, I made a contact manager app using rails. I added TokenInput plugin to introduce an instant contact search functionality in it. Tried following a railscast http://railscasts.com/episodes/258-token-fields but have been struggling with it for a while. Following is the code I use in my view <%= form_tag({:action => ''show'', :id => @contact_tokens}, :remote =>
2007 Nov 11
8
Autotest with rspec HTML output
Hey all, I was just wondering if any one has played around with getting autotest''s rspec integration working with rspec''s HTML output. I really like how in the rspec textmate bundle the context of the failing code is inlined with the failing spec along with the exact line highlighted and a link to the exact spot in reference. However, I rarely use this nice output since