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
// ON/OFF switch LESS refreshing bookmark | |
(function(){ | |
window.lessRefreshing = !window.lessRefreshing; | |
console.log('LESS refreshing: '+(window.lessRefreshing ? 'ON' : 'OFF')); | |
var rf = function(){ | |
if(window.lessRefreshing) { | |
less.refresh(); | |
setTimeout(rf, 1000); | |
} else { |
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
<?php | |
require_once __DIR__ . '/clevis/Eleda/libs/Nette/loader.php'; | |
require_once __DIR__ . '/clevis/Eleda/libs/dibi/dibi.php'; | |
use Nette\Utils\Strings as Strings; | |
dibi::connect(array( | |
'host' => 'localhost', | |
'username' => 'root', |
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
/** | |
* | |
* Suggestion for LESS syntax - path variables (2011-12-14) | |
* By Viliam Kopecky <enoice(at)gmail> | |
* | |
**/ | |
// LESS SOURCE | |
/browser/ { |
NewerOlder