This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function($, deck, undefined) { | |
$(document).bind('deck.change', function(e, from, to) { | |
var $prev = $[deck]('getSlide', to-1), | |
$next = $[deck]('getSlide', to+1); | |
$[deck]('getSlide', to).trigger('deck.becameCurrent'); | |
$prev && $prev.trigger('deck.becamePrevious'); | |
$next && $next.trigger('deck.becameNext'); | |
}); | |
})(jQuery, 'deck'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REMOVED /account/btnCheckOrderStatus.png | |
REMOVED /account/btnCreateAccount.png | |
REMOVED /account/btnCreateAccountR.png | |
REMOVED /account/btnEditPrefs.png | |
REMOVED /account/btnSavePrefs.png | |
REMOVED /account/btnSignInR.png | |
REMOVED /account/btnUnsubscribe.png | |
REMOVED /checkout/btnApply.png | |
REMOVED /checkout/btnApplyBalance.png | |
REMOVED /checkout/btnBackToOffer.png |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Modernizr.addTest('backgroundcliptext',function(){ | |
var div = document.createElement('div'); | |
var bgClip = false; | |
if ('backgroundClip' in div.style) bgClip = true; | |
'Webkit Moz O ms Khtml'.replace(/([A-Za-z]*)/g, function(val) { | |
if (val+'BackgroundClip' in div.style) bgClip = true; | |
}); | |
if (bgClip) { | |
div.style.backgroundClip = 'text'; | |
if (div.style.backgroundClip === 'text') return true; |
NewerOlder