Skip to content

Commit

Permalink
Play nice with prototypejs
Browse files Browse the repository at this point in the history
  • Loading branch information
mirek committed Nov 10, 2010
1 parent 60b290b commit 2976e59
Showing 1 changed file with 25 additions and 21 deletions.
46 changes: 25 additions & 21 deletions javascripts/application.js
Original file line number Diff line number Diff line change
@@ -1,27 +1,31 @@
// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

$(document).ready(function()
{
// jQuery datepicker for formtastic (see http://gist.github.com/271377)
$('input.ui-datepicker').datepicker({ dateFormat: 'dd-mm-yy' });
(function($) {

$(document).ready(function()
{
// jQuery datepicker for formtastic (see http://gist.github.com/271377)
$('input.ui-datepicker').datepicker({ dateFormat: 'dd-mm-yy' });

// Tooltips (see http://onehackoranother.com/projects/jquery/tipsy)
$('img').each( function() {
if ($(this).get(0).title != '') {
$(this).tipsy();
}
// Tooltips (see http://onehackoranother.com/projects/jquery/tipsy)
$('img').each( function() {
if ($(this).get(0).title != '') {
$(this).tipsy();
}
});
});
});

// Scroll effect for anchors
jQuery(function( $ )
{
$('a').click(function() {
if ($(this).attr('class') == 'anchor') {
$.scrollTo(this.hash, 500);
$(this.hash).find('span.message').text(this.href);
return false;
}
});
});
// Scroll effect for anchors
jQuery(function( $ )
{
$('a').click(function() {
if ($(this).attr('class') == 'anchor') {
$.scrollTo(this.hash, 500);
$(this.hash).find('span.message').text(this.href);
return false;
}
});
});

})(jQuery)

0 comments on commit 2976e59

Please sign in to comment.