extjs-gpl
Version:
GPL licensed version of Sencha Ext JS
27 lines (23 loc) • 578 B
JavaScript
Ext.define('Admin.view.pages.ErrorBase', {
extend: 'Ext.window.Window',
requires: [
'Admin.view.authentication.AuthenticationController',
'Ext.container.Container',
'Ext.form.Label',
'Ext.layout.container.VBox',
'Ext.toolbar.Spacer'
],
controller: 'authentication',
autoShow: true,
cls: 'error-page-container',
closable: false,
title: 'Sencha',
titleAlign: 'center',
maximized: true,
modal: true,
layout: {
type: 'vbox',
align: 'center',
pack: 'center'
}
});