Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
solo
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
solo
Commits
313de156
Commit
313de156
authored
May 30, 2013
by
Vanessa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed #259
parent
40002d01
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
633 additions
and
629 deletions
+633
-629
war/src/main/webapp/css/default-init.css
war/src/main/webapp/css/default-init.css
+4
-2
war/src/main/webapp/init.ftl
war/src/main/webapp/init.ftl
+8
-6
war/src/main/webapp/js/admin/latkeAdmin.js
war/src/main/webapp/js/admin/latkeAdmin.js
+621
-621
No files found.
war/src/main/webapp/css/default-init.css
View file @
313de156
...
@@ -18,7 +18,7 @@
...
@@ -18,7 +18,7 @@
* 403, 404, 500, article-pwd, init, login and kill-browser page style.
* 403, 404, 500, article-pwd, init, login and kill-browser page style.
*
*
* @author <a href="mailto:LLY219@gmail.com">Liyuan Li</a>
* @author <a href="mailto:LLY219@gmail.com">Liyuan Li</a>
* @version 1.0.1.
4, Apr 2
, 2013
* @version 1.0.1.
5, May 30
, 2013
*/
*/
html
{
html
{
height
:
100%
;
height
:
100%
;
...
@@ -39,7 +39,7 @@ body {
...
@@ -39,7 +39,7 @@ body {
}
}
h2
{
h2
{
background-color
:
#ECECEC
;
background-color
:
#ECECEC
;
background-image
:
linear-gradient
(
#F9F9F9
,
#ECECEC
);
background-image
:
linear-gradient
(
#F9F9F9
,
#ECECEC
);
background-repeat
:
repeat-x
;
background-repeat
:
repeat-x
;
border-radius
:
4px
4px
0
0
;
border-radius
:
4px
4px
0
0
;
...
@@ -59,6 +59,8 @@ input {
...
@@ -59,6 +59,8 @@ input {
transition
:
all
0.15s
ease-in
0s
;
transition
:
all
0.15s
ease-in
0s
;
vertical-align
:
middle
;
vertical-align
:
middle
;
width
:
410px
;
width
:
410px
;
font-family
:
\
5
fae
\
8
f6f
\
96
c5
\
9
ed1
;
font-size
:
small
;
}
}
input
:focus
{
input
:focus
{
...
...
war/src/main/webapp/init.ftl
View file @
313de156
...
@@ -165,12 +165,13 @@
...
@@ -165,12 +165,13 @@
"
display
"
:
"
block
"
,
"
display
"
:
"
block
"
,
"
opacity
"
:
1
"
opacity
"
:
1
});
});
$
(
window
).
unbind
().
keydown
(
function
(
e
){
if
(
e
.
keyCode
==
27
){
// esc
$
(
window
).
unbind
().
keydown
(
function
(
e
)
{
$
(
returnTo
);
if
(
e
.
keyCode
===
27
)
{
// esc
returnTo
();
$
(
window
).
unbind
();
$
(
window
).
unbind
();
}
else
if
(
e
.
keyCode
==
13
)
{
// enter
}
else
if
(
e
.
keyCode
===
13
)
{
// enter
$
(
initSys
);
initSys
(
);
}
}
});
});
}
}
...
@@ -208,7 +209,8 @@
...
@@ -208,7 +209,8 @@
data
:
JSON
.
stringify
(
requestJSONObject
),
data
:
JSON
.
stringify
(
requestJSONObject
),
success
:
function
(
result
,
textStatus
)
{
success
:
function
(
result
,
textStatus
)
{
if
(
!
result
.
sc
)
{
if
(
!
result
.
sc
)
{
$
(
"
#tip
"
).
text
(
result
.
msg
);;
$
(
"
#tip
"
).
text
(
result
.
msg
);
;
return
;
return
;
}
}
...
...
war/src/main/webapp/js/admin/latkeAdmin.js
View file @
313de156
This diff is collapsed.
Click to expand it.
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