mirror of
https://github.com/publiclab/image-sequencer.git
synced 2025-12-17 13:50:04 +01:00
23 lines
349 B
JavaScript
23 lines
349 B
JavaScript
(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' });
|
|
|
|
});
|