mirror of
https://github.com/lrsjng/h5ai.git
synced 2025-05-24 03:57:08 -04:00
10 lines
185 B
JavaScript
10 lines
185 B
JavaScript
modulejs.define('view/root', ['$'], function ($) {
|
|
|
|
var $el = $('body').attr('id', 'root');
|
|
|
|
$('#fallback, #fallback-hints').remove();
|
|
|
|
return {
|
|
$el: $el
|
|
};
|
|
});
|