My Settings for the Window Resizer Chrome Extension. Import on the Import / Export tab.
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 rtime; | |
var timeout = false; | |
var delta = 200; | |
$(window).resize(function() { | |
rtime = new Date(); | |
if (timeout === false) { | |
timeout = true; | |
setTimeout(resizeend, delta); | |
} | |
}); |
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 isDate(y,m,d) { | |
a = new Date(y,m-1,d); | |
b = a.getFullYear() + (a.getMonth()+1) + a.getDate(); | |
return ((y + m + d)==b); | |
} |
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
error_reporting(E_ALL); | |
ini_set('error_reporting', E_ALL); | |
ini_set('display_errors', 1); |
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://www.bulgaria-web-developers.com/projects/javascript/selectbox/ | |
selectbox : function() { | |
$('.selectbox').selectbox({ | |
onChange : function(val, inst) { selectChangeValidator( $(this), val ); }, | |
onOpen : function(inst) { modifySelectBox("open", inst); }, | |
onClose : function(inst) { modifySelectBox("close", inst); }, | |
effect : "fade" | |
}); |
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
TÜM TÜRKÇE KARAKTERLER | |
\u00E7\u011F\u0131\u00F6\u015F\u00FC\u00C7\u0130\u011E\u00D6\u015E\u00DC | |
TÜM TÜRKÇE SESLİ KARAKTERLER | |
\u0131\u00F6\u00FC\u0130\u00D6\u00DC | |
ç --> \u00E7 | |
ğ --> \u011F | |
ı --> \u0131 | |
ö --> \u00F6 |