Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
S
skylivex
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
astronomy
skylivex
Commits
3093376b
Commit
3093376b
authored
Feb 24, 2013
by
Franco (nextime) Lanza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed template paths for nextime template and remove duplicate js file
parent
3aa1a1f9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
40 deletions
+1
-40
SkyliveX.js
gui/nextime/SkyliveX.js
+0
-39
splash.html
gui/nextime/splash.html
+1
-1
No files found.
gui/nextime/SkyliveX.js
deleted
100644 → 0
View file @
3aa1a1f9
function
changeContent
(
id
,
content
)
{
var
n
=
document
.
getElementById
(
id
);
if
(
typeof
(
n
)
!=
"undefined"
)
n
.
innerHTML
=
content
;
}
function
notify
(
content
)
{
if
(
typeof
(
notifycb
)
==
"function"
)
notifycb
(
content
);
}
function
msgalert
(
content
)
{
if
(
typeof
(
alertcb
)
==
"function"
)
alertcb
(
content
);
else
alert
(
content
);
}
function
publicReceived
(
user
,
msg
)
{
if
(
typeof
(
public_received
)
==
"function"
)
{
public_received
(
user
,
msg
);
}
else
{
n
=
document
.
getElementById
(
"chatarea"
);
if
(
typeof
(
n
)
!=
"undefined"
)
{
var
newel
=
document
.
createElement
(
'p'
);
newel
.
innerHTML
=
"<"
+
user
+
"> "
+
msg
;
n
.
appendChild
(
newel
);
n
.
scollTop
=
n
.
scrollHeight
;
}
}
}
SkyliveX
.
changeContent
.
connect
(
changeContent
);
SkyliveX
.
notify
.
connect
(
notify
);
SkyliveX
.
alertmsg
.
connect
(
msgalert
);
SkyliveX
.
public_received
.
connect
(
publicReceived
);
gui/nextime/splash.html
View file @
3093376b
...
...
@@ -25,7 +25,7 @@
</head>
<body>
<div
id=
"loading"
>
<img
src=
"img/logo.png"
></img>
<img
src=
"
nextime/
img/logo.png"
></img>
<h3
id=
"loadstring"
>
Loading...
</h3>
</div>
</body>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment