Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
douban-api-proxy
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
douban-api-proxy
Commits
d8bf540d
Commit
d8bf540d
authored
Apr 24, 2020
by
jvoisin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove an undeclared and useless local variable
parent
1df82110
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
main.js
cps/static/js/main.js
+2
-4
No files found.
cps/static/js/main.js
View file @
d8bf540d
...
...
@@ -211,8 +211,7 @@ $(function() {
data
:
{
"parameter"
:
2
},
success
:
function
success
(
data
)
{
$
(
"#spinner2"
).
hide
();
ResultText
=
data
.
text
;
$
(
"#DialogContent"
).
html
(
ResultText
);
$
(
"#DialogContent"
).
html
(
data
.
text
);
$
(
"#DialogFinished"
).
removeClass
(
"hidden"
);
}
});
...
...
@@ -311,8 +310,7 @@ $(function() {
url
:
path
+
"/../../import_ldap_users"
,
success
:
function
success
(
data
)
{
$
(
"#spinner2"
).
hide
();
ResultText
=
data
.
text
;
$
(
"#DialogContent"
).
html
(
ResultText
);
$
(
"#DialogContent"
).
html
(
data
.
text
);
$
(
"#DialogFinished"
).
removeClass
(
"hidden"
);
}
});
...
...
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