small-package/luci-app-tinyfilemanager/htdocs/luci-static/resources/view/tinyfilemanager/main.js

19 lines
367 B
JavaScript

'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;'
});
}
});