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
CSVToArray(strData, strDelimiter) { | |
// Check to see if the delimiter is defined. If not, | |
// then default to comma. | |
strDelimiter = (strDelimiter || ","); | |
// Create a regular expression to parse the CSV values. | |
var objPattern = new RegExp( | |
( | |
// Delimiters. | |
"(\\" + strDelimiter + "|\\r?\\n|\\r|^)" + |
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
### Keybase proof | |
I hereby claim: | |
* I am rakeden on github. | |
* I am rakeden (https://keybase.io/rakeden) on keybase. | |
* I have a public key ASCEGSE7tEC8bfcLK0r3JutS4CAgergfUPoVl1Msj9X1qwo | |
To claim this, I am signing this object: |
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(){ | |
function post_height(){ | |
var msg = JSON.stringify({event:'size', height: document.body.scrollHeight}); | |
window.top.postMessage(msg, '*'); | |
} | |
var onload = window.onload; | |
window.onload = function(){ | |
if( onload && typeof onload =='function'){ |