mirror of
https://github.com/lrsjng/h5ai.git
synced 2025-05-27 13:34:30 -04:00
Begin to move all src javascript to es6. Add search/filter ignore case option.
This commit is contained in:
parent
f37e8e7b89
commit
7ec2bdf16a
58 changed files with 3546 additions and 3420 deletions
|
@ -1,7 +1,8 @@
|
|||
modulejs.define('view/mainrow', ['$', 'view/root'], function ($, root) {
|
||||
var $el = $('<div id="mainrow"/>').appendTo(root.$el);
|
||||
const {jQuery: jq} = require('../win');
|
||||
const root = require('./root');
|
||||
|
||||
return {
|
||||
$el: $el
|
||||
};
|
||||
});
|
||||
const $el = jq('<div id="mainrow"/>').appendTo(root.$el);
|
||||
|
||||
module.exports = {
|
||||
$el
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue