mirror of
https://github.com/lrsjng/h5ai.git
synced 2025-05-24 03:57:08 -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/content', ['$', 'view/mainrow'], function ($, mainrow) {
|
||||
var $el = $('<div id="content"/>').appendTo(mainrow.$el);
|
||||
const {jQuery: jq} = require('../win');
|
||||
const mainrow = require('./mainrow');
|
||||
|
||||
return {
|
||||
$el: $el
|
||||
};
|
||||
});
|
||||
const $el = jq('<div id="content"/>').appendTo(mainrow.$el);
|
||||
|
||||
module.exports = {
|
||||
$el
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue