some more data dialog updates
This commit is contained in:
parent
4c4cfb2423
commit
244055db39
4 changed files with 40 additions and 4 deletions
|
@ -5,6 +5,15 @@ pandora.ui.eventsDialog = function() {
|
|||
width = Math.round(window.innerWidth * 0.9),
|
||||
that = Ox.Dialog({
|
||||
buttons: [
|
||||
Ox.Button({
|
||||
id: 'managePlaces',
|
||||
title: 'Manage Places...'
|
||||
}).bindEvent({
|
||||
click: function() {
|
||||
// ...
|
||||
}
|
||||
}),
|
||||
{},
|
||||
Ox.Button({
|
||||
id: 'done',
|
||||
title: 'Done'
|
||||
|
|
|
@ -90,6 +90,15 @@ pandora.ui.namesDialog = function() {
|
|||
|
||||
that = Ox.Dialog({
|
||||
buttons: [
|
||||
Ox.Button({
|
||||
id: 'manageTitles',
|
||||
title: 'Manage Titles...'
|
||||
}).bindEvent({
|
||||
click: function() {
|
||||
// ...
|
||||
}
|
||||
}),
|
||||
{},
|
||||
Ox.Button({
|
||||
id: 'done',
|
||||
title: 'Done'
|
||||
|
@ -129,8 +138,8 @@ pandora.ui.namesDialog = function() {
|
|||
.css({
|
||||
position: 'absolute',
|
||||
top: '4px',
|
||||
left: '64px',
|
||||
right: '64px',
|
||||
left: '128px',
|
||||
right: '128px',
|
||||
bottom: '4px',
|
||||
paddingTop: '2px',
|
||||
fontSize: '9px',
|
||||
|
|
|
@ -33,6 +33,15 @@ pandora.ui.placesDialog = function() {
|
|||
}),
|
||||
that = Ox.Dialog({
|
||||
buttons: [
|
||||
Ox.Button({
|
||||
id: 'manageEvents',
|
||||
title: 'Manage Events...'
|
||||
}).bindEvent({
|
||||
click: function() {
|
||||
// ...
|
||||
}
|
||||
}),
|
||||
{},
|
||||
Ox.Button({
|
||||
id: 'done',
|
||||
title: 'Done'
|
||||
|
|
|
@ -81,6 +81,15 @@ pandora.ui.titlesDialog = function() {
|
|||
|
||||
that = Ox.Dialog({
|
||||
buttons: [
|
||||
Ox.Button({
|
||||
id: 'manageNames',
|
||||
title: 'Manage Names...'
|
||||
}).bindEvent({
|
||||
click: function() {
|
||||
// ...
|
||||
}
|
||||
}),
|
||||
{},
|
||||
Ox.Button({
|
||||
id: 'done',
|
||||
title: 'Done'
|
||||
|
@ -120,8 +129,8 @@ pandora.ui.titlesDialog = function() {
|
|||
.css({
|
||||
position: 'absolute',
|
||||
top: '4px',
|
||||
left: '64px',
|
||||
right: '64px',
|
||||
left: '128px',
|
||||
right: '128px',
|
||||
bottom: '4px',
|
||||
paddingTop: '2px',
|
||||
fontSize: '9px',
|
||||
|
|
Loading…
Reference in a new issue