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
| /* | |
| * touch handler for openlayers maps on mobile | |
| * see: http://www.openlayers.org/ | |
| */ | |
| var map = {} // dummy object -> create & init an openlayers map | |
| Touch = (function() { return { | |
| startX: 0, | |
| startY: 0, |
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
| # first cd into aheadworks or mageworx extension dir | |
| # (this assumes it's been unzipped into magento's root dir) | |
| for x in `find step_*`; do | |
| y=`echo $x | awk '{ sub("step_[0-9]+/", ""); print "../"$0; }'`; | |
| if [ -d "$x" ] && ! [ -e "$y" ] ; then mkdir -p $y; fi; | |
| if [ -f "$x" ]; then cp $x $y; fi; | |
| done |
NewerOlder