BUGFIX: convert ImageFormAction form prototype syntax to jQuery syntax, merged from r94304

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@94332 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Normann Lou 2009-12-03 01:55:56 +00:00 committed by Sam Minnee
parent 0b0e149618
commit 7c5a06855d
2 changed files with 16 additions and 18 deletions

View File

@ -22,8 +22,8 @@ class ImageFormAction extends FormAction {
parent::__construct($action, $title, $form); parent::__construct($action, $title, $form);
} }
function Field() { function Field() {
Requirements::javascript(SAPPHIRE_DIR . '/thirdparty/prototype/prototype.js'); Requirements::javascript(THIRDPARTY_DIR . '/jquery/jquery.js');
Requirements::javascript(SAPPHIRE_DIR . '/thirdparty/behaviour/behaviour.js'); Requirements::javascript(THIRDPARTY_DIR . '/jquery-livequery/jquery.livequery.js');
Requirements::javascript(SAPPHIRE_DIR . '/javascript/ImageFormAction.js'); Requirements::javascript(SAPPHIRE_DIR . '/javascript/ImageFormAction.js');
$classClause = ''; $classClause = '';

View File

@ -1,20 +1,18 @@
Behaviour.register({ (function($) {
'input.rollover' : { $(document).ready(function() {
initialize: function() { $("input.rollover").livequery(function(){
var srcParts = this.src.match( /(.*)\.([a-zA-Z]+)$/ ); var srcParts = jQuery(this).attr('src').match( /(.*)\.([a-zA-Z]+)$/ );
var fileName = srcParts[1]; var fileName = srcParts[1];
var extension = srcParts[2]; var extension = srcParts[2];
this.overSrc = fileName + '_over.' + extension; this.overSrc = fileName + '_over.' + extension;
this.outSrc = this.src; this.outSrc = jQuery(this).attr('src');
}, });
$("input.rollover").livequery('mouseover', function(){
jQuery(this).attr('src', this.overSrc);
});
onmouseover: function() { $("input.rollover").livequery('mouseout', function(){
this.src = this.overSrc; jQuery(this).attr('src', this.outSrc);
}, });
});
onmouseout: function() { })(jQuery);
this.src = this.outSrc;
}
}
});