initial commit

This commit is contained in:
jywarren
2017-01-01 16:10:50 -05:00
commit e7521de057
6 changed files with 209 additions and 0 deletions

22
dist/imageboard.js vendored Normal file
View File

@@ -0,0 +1,22 @@
(function(exports){
if (typeof module === 'undefined')
exports = ImageBoard;
else
module.exports = ImageBoard;
})(typeof exports === 'undefined'? this['ImageBoard']={}: exports);
var ImageBoard = function ImageBoard(options){
}
jQuery(document).ready(function($) {
var imageSelect = imageselect({ selector: '#drop' });
});