mirror of
https://github.com/lrsjng/h5ai
synced 2025-12-20 15:53:38 +01:00
62 lines
1.4 KiB
JavaScript
62 lines
1.4 KiB
JavaScript
|
|
// other libs
|
|
// ----------
|
|
// @include "lib/modernizr-*.js"
|
|
if (window.attachEvent && !window.addEventListener) { throw 'no-browser'; }
|
|
// @include "lib/underscore-*.js"
|
|
// @include "lib/markdown-*.js"
|
|
// @include "lib/modulejs-*.js"
|
|
// @include "lib/moment-*.js"
|
|
// @include "lib/json2-*.js"
|
|
|
|
// jQuery libs
|
|
// -----------
|
|
// @include "lib/jquery-*.js"
|
|
// @include "lib/jquery.fracs-*.js"
|
|
// @include "lib/jquery.mousewheel-*.js"
|
|
// @include "lib/jquery.qrcode-*.js"
|
|
// @include "lib/jquery.scrollpanel-*.js"
|
|
|
|
// app
|
|
// ---
|
|
(function () {
|
|
'use strict';
|
|
|
|
/*global jQuery, markdown, Modernizr, moment, _ */
|
|
modulejs.define('$', function () { return jQuery; });
|
|
modulejs.define('markdown', function () { return markdown; });
|
|
modulejs.define('modernizr', function () { return Modernizr; });
|
|
modulejs.define('moment', function () { return moment; });
|
|
modulejs.define('_', function () { return _; });
|
|
|
|
// @include "inc/**/*.js"
|
|
|
|
var $ = jQuery,
|
|
module = $('script[data-module]').data('module'),
|
|
url;
|
|
|
|
if ($('html').hasClass('no-browser')) {
|
|
return;
|
|
}
|
|
|
|
if (module === 'main') {
|
|
url = '.';
|
|
} else if (module === 'info') {
|
|
url = 'server/php/index.php';
|
|
} else {
|
|
return;
|
|
}
|
|
|
|
$.ajax({
|
|
url: url,
|
|
data: {action: 'get', setup: true, options: true, types: true, theme: true, langs: true},
|
|
type: 'POST',
|
|
dataType: 'json',
|
|
success: function (config) {
|
|
|
|
modulejs.define('config', config);
|
|
$(function () { modulejs.require(module); });
|
|
}
|
|
});
|
|
|
|
}());
|