You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
367 B
JavaScript

1 year ago
'use strict';
'require view';
return view.extend({
handleSaveApply: null,
handleSave: null,
handleReset: null,
load: function() {
},
render: function() {
return E('iframe', {
src: window.location.protocol + '//' + window.location.hostname + '/tinyfilemanager/',
style: 'width: 100%; min-height: 100vh; border: none; border-radius: 3px;'
});
}
});