mirror of
https://github.com/lrsjng/h5ai.git
synced 2025-05-28 22:16:00 -04:00
8 lines
184 B
JavaScript
8 lines
184 B
JavaScript
modulejs.define('view/content', ['$', 'view/mainrow'], function ($, mainrow) {
|
|
|
|
var $el = $('<div id="content"/>').appendTo(mainrow.$el);
|
|
|
|
return {
|
|
$el: $el
|
|
};
|
|
});
|