#Mac OS X
#Mac OS X
This file contains 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
from xml.dom import minidom | |
import json | |
config = { | |
'svg_file' : 'map.svg', | |
'js_file' : 'map.js', | |
'js_var' : 'svgMap' | |
} | |
svg = minidom.parse(config['svg_file']) |
This file contains 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
@media only screen and (min-device-width: 320px) and (max-device-width: 1024px) | |
html | |
-webkit-text-size-adjust: none |
This file contains 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
puts "Called from: #{File.expand_path(File.dirname("."))}" | |
puts __FILE__ | |
puts "last: " + File.dirname(__FILE__).split("/").last | |
puts pwd = File.expand_path(File.dirname(__FILE__)) | |
puts "parent dir:" | |
ar = pwd.split("/") | |
puts "/#{ar[ar.length-2]}" |
NewerOlder