mirror of
https://github.com/php/web-doc-editor.git
synced 2026-04-28 03:33:21 +02:00
13 lines
328 B
JavaScript
13 lines
328 B
JavaScript
Ext.define('phpdoe.view.main.config.notify', {
|
|
extend: 'Ext.ux.window.Notification',
|
|
title: 'Option saved',
|
|
position: 'br',
|
|
iconCls: 'iconInfo',
|
|
autoHideDelay: 2000,
|
|
slideInDuration: 500,
|
|
slideBackDuration: 500,
|
|
autoHide: true,
|
|
spacing: 20,
|
|
html: 'Option has been saved successfully!'
|
|
})
|