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
@media (min-width:1200px){ | |
.auto-clear .col-lg-1:nth-child(12n+1){clear:left;} | |
.auto-clear .col-lg-2:nth-child(6n+1){clear:left;} | |
.auto-clear .col-lg-3:nth-child(4n+1){clear:left;} | |
.auto-clear .col-lg-4:nth-child(3n+1){clear:left;} | |
.auto-clear .col-lg-6:nth-child(odd){clear:left;} | |
} | |
@media (min-width:992px) and (max-width:1199px){ | |
.auto-clear .col-md-1:nth-child(12n+1){clear:left;} | |
.auto-clear .col-md-2:nth-child(6n+1){clear:left;} |
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 | |
$text = <<<TEXT | |
Morbi nisl tortor, consectetur vitae laoreet eu, lobortis id ipsum. Integer scelerisque blandit pulvinar. Nam tempus mi eget nunc laoreet venenatis. Proin viverra, erat at accumsan tincidunt, ante mi cursus elit, non | |
congue mauris dolor ac elit. Maecenas mollis nisl a sem semper ornare. Integer nunc purus, dapibus nec dignissim sed, dictum eget leo. Etiam in mi ut erat pretium fringilla sed | |
TEXT; | |
$paragraphedText = "<p>" . implode( "</p>\n\n<p>", preg_split( '/\n(?:\s*\n)+/', $text ) ) . "</p>"; |
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
function feedbackModalFn(selector){ | |
//var feedbackModal = $('.feedback-modal'); | |
var feedbackModal = $(selector); | |
var winH; | |
var topPane; | |
var feedbackModalHeight; | |
// private scope | |
function init() |
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 | |
namespace Nette\Application\Responses; | |
use Nette; | |
/** | |
* CSV download response. | |
* Under New BSD license. | |
* |
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
if ('createTouch' in document) | |
{ | |
try | |
{ | |
var ignore = /:hover/; | |
for (var i=0; i<document.styleSheets.length; i++) | |
{ | |
var sheet = document.styleSheets[i]; | |
for (var j=sheet.cssRules.length-1; j>=0; j--) |
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
(function($) { | |
$.mathUtils = { | |
sum: function(array) { | |
var total = 0; | |
$.each(array, function(index, value) { | |
total += $.mathUtils.parseCzechFloat(value); | |
}); | |
return total; | |
}, |
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() { | |
/////////////////////// | |
// | |
// Recovery Below | |
// | |
/////////////////////// | |
// Retrieve the object from storage onReady | |
var autosave = localStorage.getItem('file'); |
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
var AutoSave = (function(){ | |
var timer = null; | |
function getEditor(){ | |
var elems = document.getElementsByTagName("textarea") | |
if (elems.length <= 0) | |
return null; |
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
http://kod.djpw.cz/wwhc |
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
var delay = (function(){ | |
var timer = 0; | |
return function(callback, ms){ | |
clearTimeout (timer); | |
timer = setTimeout(callback, ms); | |
}; | |
})(); | |
$('input').keyup(function() { |