26 lines
523 B
JavaScript
26 lines
523 B
JavaScript
/*jslint browser: true, confusion: true, regexp: true, white: true */
|
|
/*jshint browser: true, confusion: true, regexp: false, white: false */
|
|
/*global jQuery, amplify, H5AI_CONFIG */
|
|
|
|
(function ($) {
|
|
"use strict";
|
|
|
|
var H5AI = {};
|
|
|
|
// @include "inc/Util.js"
|
|
// @include "inc/Core.js"
|
|
// @include "inc/Sort.js"
|
|
// @include "inc/ZippedDownload.js"
|
|
|
|
$(function () {
|
|
|
|
H5AI.core.init();
|
|
H5AI.sort.init();
|
|
H5AI.zippedDownload.init();
|
|
|
|
$("#tree").scrollpanel();
|
|
H5AI.core.shiftTree(false, true);
|
|
});
|
|
|
|
}(jQuery));
|