forked from 0x2620/pandora
site.js, cleanup stream names again
This commit is contained in:
parent
fc4285933a
commit
3d36da45af
8 changed files with 90 additions and 52 deletions
|
|
@ -1,6 +1,29 @@
|
|||
$(function() {
|
||||
Ox.initLoading();
|
||||
oxdb = {};
|
||||
var oxdb = new Ox.App({
|
||||
requestURL: "/api/"
|
||||
}),
|
||||
$dialog = new Ox.Dialog({
|
||||
title: "Application Error",
|
||||
buttons: [
|
||||
{
|
||||
value: "Change Title",
|
||||
click: function() {
|
||||
Ox.print("click to change title")
|
||||
$dialog.options({
|
||||
title: "New Title"
|
||||
});
|
||||
$dialog.$buttons[0].toggleDisabled();
|
||||
}
|
||||
},
|
||||
{
|
||||
value: "Close",
|
||||
click: function() {
|
||||
$dialog.close();
|
||||
}
|
||||
}
|
||||
]
|
||||
});
|
||||
|
||||
var user = {
|
||||
username: "",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue