Begin to move all src javascript to es6. Add search/filter ignore case option.

This commit is contained in:
Lars Jung 2016-06-02 23:16:23 +02:00
parent f37e8e7b89
commit 7ec2bdf16a
58 changed files with 3546 additions and 3420 deletions

View file

@ -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
};