2015-11-18 23:16:58 +01:00

10 lines
184 B
JavaScript

modulejs.define('view/root', ['$'], function ($) {
var $el = $('body').attr('id', 'root');
$('#fallback, #fallback-hints').remove();
return {
$el: $el
};
});