I hereby claim:
- I am plbabin on github.
- I am plbabin (https://keybase.io/plbabin) on keybase.
- I have a public key whose fingerprint is 352C 46FB 762F 706D 6AC0 7B29 4990 86F4 153F DAC1
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
{ | |
"auto_complete_commit_on_tab": true, | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Base16 Color Schemes/base16-tomorrow.dark.tmTheme", | |
"file_exclude_patterns": | |
[ | |
"*-min.js", | |
"*.min.css", | |
".DS_Store", | |
"*.tmproj", |
if (typeof window.localStorage == 'undefined' || typeof window.sessionStorage == 'undefined') (function () { | |
var Storage = function (type) { | |
function createCookie(name, value, days) { | |
var date, expires; | |
if (days) { | |
date = new Date(); | |
date.setTime(date.getTime()+(days*24*60*60*1000)); | |
expires = "; expires="+date.toGMTString(); |
$.extend($.expr[':'], { | |
hasData: function (obj, intStackIndex, arrProperties) { | |
var arguments = arrProperties[ 3 ]; | |
var $this = $(obj); | |
var isValid = false; | |
if(arguments.indexOf('=') > -1){ | |
arguments = arguments.split('=') | |
if($this.data(arguments[0]) == arguments[1]){ | |
isValid = true; |
<?php | |
function _decode($data) | |
{ | |
$newdata = array(); | |
foreach($data as $key => $value) { | |
if(is_array($value)) { | |
// recursion because the value for checkbox is an array | |
$newdata[$key] = $this->_decode($value); | |
} else { |
$(document).ready(function(){ | |
$(document.body).delegate('a[href="#"]','click',function(e){ | |
return false; | |
}); | |
}) |