mirror of
https://gitlab.com/skysthelimit.dev/selenite.git
synced 2025-06-17 11:02:08 -05:00
6 lines
166 B
JavaScript
6 lines
166 B
JavaScript
var JSZipTestUtils = {
|
|
loadZipFile : function (name, callback) {
|
|
JSZipUtils.getBinaryContent(name + "?_=" + ( new Date() ).getTime(), callback);
|
|
}
|
|
};
|