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
// font-face mixin | |
font-url(file) | |
return 'fonts/' + file | |
webfont(family, file, weight = normal, style = normal) | |
@font-face | |
font-family family | |
file += '/' + file | |
url(font-url(file + '.woff2')) format('woff2'), | |
url(font-url(file + '.woff')) format('woff') |
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
javascript: | |
var s='%s'; | |
url='http://reiseauskunft.bahn.de/bin/query.exe/dn?getstop=1&S=%s&Z=%s'; | |
query=''; | |
urlChunks=url.split('%s'); | |
console.log(s); | |
sChunks=s.split(' to '); | |
console.log(sChunks); | |
for(i=0; i<sChunks.length; i++)query+=urlChunks[i]+sChunks[i]; | |
location.replace(query); |
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
// Note the new way of requesting CoffeeScript since 1.7.x | |
require('coffee-script/register'); | |
// This bootstraps your Gulp's main file | |
require('./Gulpfile.coffee'); |
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
APP_ENV=local |
NewerOlder