update welcome dialog
This commit is contained in:
parent
0174c9772b
commit
eb87f56ede
2 changed files with 12 additions and 0 deletions
|
@ -26,6 +26,7 @@ oml.ui.appPanel = function() {
|
||||||
|
|
||||||
function setPage(page, previousPage) {
|
function setPage(page, previousPage) {
|
||||||
var dialogs = {
|
var dialogs = {
|
||||||
|
welcomeDialog: ['welcome'],
|
||||||
appDialog: ['about', 'faq', 'terms', 'development', 'contact'],
|
appDialog: ['about', 'faq', 'terms', 'development', 'contact'],
|
||||||
updateDialog: ['update'],
|
updateDialog: ['update'],
|
||||||
userDialog: ['preferences', 'peers', 'transfers'],
|
userDialog: ['preferences', 'peers', 'transfers'],
|
||||||
|
|
|
@ -4,6 +4,17 @@ oml.ui.welcomeDialog = function() {
|
||||||
|
|
||||||
var that = oml.ui.iconDialog({
|
var that = oml.ui.iconDialog({
|
||||||
buttons: [
|
buttons: [
|
||||||
|
Ox.Button({
|
||||||
|
id: 'preferences',
|
||||||
|
style: 'squared',
|
||||||
|
title: Ox._('Preferences...')
|
||||||
|
})
|
||||||
|
.bindEvent({
|
||||||
|
click: function() {
|
||||||
|
oml.UI.set({page: 'preferences'});
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
{},
|
||||||
Ox.Button({
|
Ox.Button({
|
||||||
id: 'close',
|
id: 'close',
|
||||||
style: 'squared',
|
style: 'squared',
|
||||||
|
|
Loading…
Reference in a new issue