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
<?php | |
/** | |
* Mark orders as exported | |
* | |
* @params $orderId int Order ID that should be marked as exported. | |
* @return Phoenix_Logwin_Model_Orders | |
*/ | |
protected function _setOrderExportStatus($order, $exportStatus = 0, $historyMarker = self::ORDER_EXPORT_HISTORY_MARKER) | |
{ | |
$exportStatus = $order->getExportStatus()|$exportStatus; |
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
git checkout -- / |
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
<style> | |
#page { | |
display: table-row; | |
} | |
#left, #right { | |
display: table-cell; | |
background: #333; | |
padding: 10px; | |
color: #000; | |
width: 500px; |
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
<html> | |
<head> | |
<style> | |
#left, #right { | |
display: inline-block; | |
background: #333; | |
padding: 10px; | |
color: #000; | |
width: 500px; | |
} |
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
.jcarousel-prev-disabled { | |
opacity:0.5; | |
} | |
.jcarousel-next-disabled { | |
opacity:0.5; | |
} |
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
$(document).ready(function (){ | |
$("#pikame").PikaChoose({carousel:true, carouselVertical:true, animationSpeed:500,autoPlay:true, transition:[4],animationSpeed:600}); | |
$("#pikame li:eq(0) .clip img").click(); | |
}); |
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
$(document).ready(function (){ | |
$("#pikame").PikaChoose({carousel:true, carouselVertical:true, hoverPause:true, stopOnClick: true, startOn:0}); | |
$("#pikame li:eq(0) .clip img").click(); | |
setInterval(function(){ | |
$('.pikachoose').show(); | |
}, 500); | |
}); |
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
index.html: before </BODY> | |
jQuery(function(){ | |
$('.nav li').mouseover(function() { | |
$(this).addClass('hover'); | |
}); | |
$('.nav li').mouseout(function (e) { | |
// Do not close if going over to a select element | |
if (e.target.tagName.toLowerCase() == 'select') return; | |
$(this).removeClass('hover'); |
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
index.html: before </BODY> | |
jQuery(function(){ | |
$('.nav li').mouseover(function() { | |
$(this).addClass('hover'); | |
}); | |
$('.nav li').mouseout(function (e) { | |
// Do not close if going over to a select element | |
if (e.target.tagName.toLowerCase() == 'select') return; | |
$(this).removeClass('hover'); |