new files
This commit is contained in:
parent
5d7d22c960
commit
6c3563455f
3 changed files with 131 additions and 1 deletions
|
@ -79,7 +79,7 @@ pandora.ui.home = function() {
|
||||||
})
|
})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
submit: function(data) {
|
submit: function(data) {
|
||||||
pandora.URL.set('/?find=' + data.value);
|
data.value && pandora.URL.set('/?find=' + data.value);
|
||||||
that.fadeOutScreen();
|
that.fadeOutScreen();
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
62
static/js/pandora/ui/preferencesDialog.js
Normal file
62
static/js/pandora/ui/preferencesDialog.js
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
pandora.ui.preferencesDialog = function() {
|
||||||
|
|
||||||
|
var tabs = [
|
||||||
|
{id: 'account', title: 'Account', selected: true},
|
||||||
|
{id: 'settings', title: 'Settings'}
|
||||||
|
];
|
||||||
|
var $tabPanel = Ox.TabPanel({
|
||||||
|
content: function(id) {
|
||||||
|
return Ox.SplitPanel({
|
||||||
|
elements: [
|
||||||
|
{
|
||||||
|
element: Ox.Element()
|
||||||
|
.css({padding: '16px'})
|
||||||
|
.append(
|
||||||
|
$('<img>')
|
||||||
|
.attr({src: '/static/png/logo256.png'})
|
||||||
|
.css({width: '128px'})
|
||||||
|
),
|
||||||
|
size: 144
|
||||||
|
},
|
||||||
|
{
|
||||||
|
element: Ox.Element()
|
||||||
|
.css({padding: '16px', overflowY: 'auto'})
|
||||||
|
.html(Ox.repeat(Ox.getObjectById(tabs, id).title + ' ', 200))
|
||||||
|
}
|
||||||
|
],
|
||||||
|
orientation: 'horizontal'
|
||||||
|
});
|
||||||
|
},
|
||||||
|
tabs: tabs
|
||||||
|
})
|
||||||
|
.bindEvent({
|
||||||
|
change: function(data) {
|
||||||
|
$dialog.options({
|
||||||
|
title: Ox.getObjectById(tabs, data.selected).title
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
var $dialog = Ox.Dialog({
|
||||||
|
buttons: [
|
||||||
|
Ox.Button({
|
||||||
|
id: 'close',
|
||||||
|
title: 'Close'
|
||||||
|
}).bindEvent({
|
||||||
|
click: function() {
|
||||||
|
$dialog.close();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
],
|
||||||
|
//closeButton: true,
|
||||||
|
content: $tabPanel,
|
||||||
|
height: Math.round((window.innerHeight - 24) * 0.75),
|
||||||
|
//maximizeButton: true,
|
||||||
|
minHeight: 256,
|
||||||
|
minWidth: 640,
|
||||||
|
title: 'Preferences',
|
||||||
|
width: Math.round(window.innerWidth * 0.75),
|
||||||
|
});
|
||||||
|
|
||||||
|
return $dialog;
|
||||||
|
|
||||||
|
};
|
68
static/js/pandora/ui/siteDialog.js
Normal file
68
static/js/pandora/ui/siteDialog.js
Normal file
|
@ -0,0 +1,68 @@
|
||||||
|
pandora.ui.siteDialog = function(section) {
|
||||||
|
|
||||||
|
var tabs = [
|
||||||
|
{id: 'about', title: 'About'},
|
||||||
|
{id: 'news', title: 'News'},
|
||||||
|
{id: 'tour', title: 'Take a Tour'},
|
||||||
|
{id: 'faq', title: 'Frequently Asked Questions'},
|
||||||
|
{id: 'tos', title: 'Terms of Service'},
|
||||||
|
{id: 'contact', title: 'Contact'},
|
||||||
|
{id: 'software', title: 'Software'}
|
||||||
|
];
|
||||||
|
Ox.getObjectById(tabs, section).selected = true;
|
||||||
|
var $tabPanel = Ox.TabPanel({
|
||||||
|
content: function(id) {
|
||||||
|
return Ox.SplitPanel({
|
||||||
|
elements: [
|
||||||
|
{
|
||||||
|
element: Ox.Element()
|
||||||
|
.css({padding: '16px'})
|
||||||
|
.append(
|
||||||
|
$('<img>')
|
||||||
|
.attr({src: '/static/png/logo256.png'})
|
||||||
|
.css({width: '128px'})
|
||||||
|
),
|
||||||
|
size: 144
|
||||||
|
},
|
||||||
|
{
|
||||||
|
element: Ox.Element()
|
||||||
|
.css({padding: '16px', overflowY: 'auto'})
|
||||||
|
.html(Ox.repeat(Ox.getObjectById(tabs, id).title + ' ', 200))
|
||||||
|
}
|
||||||
|
],
|
||||||
|
orientation: 'horizontal'
|
||||||
|
});
|
||||||
|
},
|
||||||
|
tabs: tabs
|
||||||
|
})
|
||||||
|
.bindEvent({
|
||||||
|
change: function(data) {
|
||||||
|
$dialog.options({
|
||||||
|
title: Ox.getObjectById(tabs, data.selected).title
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
var $dialog = Ox.Dialog({
|
||||||
|
buttons: [
|
||||||
|
Ox.Button({
|
||||||
|
id: 'close',
|
||||||
|
title: 'Close'
|
||||||
|
}).bindEvent({
|
||||||
|
click: function() {
|
||||||
|
$dialog.close();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
],
|
||||||
|
//closeButton: true,
|
||||||
|
content: $tabPanel,
|
||||||
|
height: Math.round((window.innerHeight - 24) * 0.75),
|
||||||
|
//maximizeButton: true,
|
||||||
|
minHeight: 256,
|
||||||
|
minWidth: 640,
|
||||||
|
title: 'About',
|
||||||
|
width: Math.round(window.innerWidth * 0.75),
|
||||||
|
});
|
||||||
|
|
||||||
|
return $dialog;
|
||||||
|
|
||||||
|
};
|
Loading…
Reference in a new issue