1
0
mirror of https://github.com/lrsjng/h5ai.git synced 2025-09-16 08:52:26 +02:00
Files
php-h5ai/src/h5ai/js/main-php.js
2011-09-04 21:18:19 +02:00

25 lines
530 B
JavaScript

(function($) {
"use strict";
/*global jQuery, h5aiOptions, h5aiLangs*/
// @include "inc/jquery.mousewheel.min.js"
// @include "inc/jquery.scrollpanel.js"
// @include "inc/jquery.utils.js"
// @include "inc/jquery.fracs.js"
// @include "inc/h5ai.js"
var h5ai = new H5ai(h5aiOptions, h5aiLangs);
$.h5ai = {
click: $.proxy(h5ai.pathClick, h5ai)
};
$(function () {
h5ai.init();
$("#tree").scrollpanel();
h5ai.shiftTree(false, true);
});
})(jQuery);