mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MINOR Using jquery.live instead of livequery on ImageFormAction.js (from r100886)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@111534 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
6c541940e4
commit
e55102ef29
@ -23,7 +23,6 @@ class ImageFormAction extends FormAction {
|
|||||||
}
|
}
|
||||||
function Field() {
|
function Field() {
|
||||||
Requirements::javascript(THIRDPARTY_DIR . '/jquery/jquery.js');
|
Requirements::javascript(THIRDPARTY_DIR . '/jquery/jquery.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 = '';
|
||||||
|
@ -1,18 +1,18 @@
|
|||||||
(function($) {
|
(function($) {
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$("input.rollover").livequery(function(){
|
$("input.rollover").live('mouseover', function(){
|
||||||
var srcParts = jQuery(this).attr('src').match( /(.*)\.([a-zA-Z]+)$/ );
|
if(!this.overSrc) {
|
||||||
|
var srcParts = $(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 = jQuery(this).attr('src');
|
this.outSrc = $(this).attr('src');
|
||||||
});
|
}
|
||||||
$("input.rollover").livequery('mouseover', function(){
|
$(this).attr('src', this.overSrc);
|
||||||
jQuery(this).attr('src', this.overSrc);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
$("input.rollover").livequery('mouseout', function(){
|
$("input.rollover").live('mouseout', function(){
|
||||||
jQuery(this).attr('src', this.outSrc);
|
$(this).attr('src', this.outSrc);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
})(jQuery);
|
})(jQuery);
|
Loading…
Reference in New Issue
Block a user