Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simplesamlphp
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Perun
Perun ProxyIdP
v1
simplesamlphp
Commits
fc57298d
Commit
fc57298d
authored
5 years ago
by
Thijs Kinkhorst
Browse files
Options
Downloads
Patches
Plain Diff
code quality
parent
1b8f1343
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/core/www/idp/logout-iframe.js
+1
-1
1 addition, 1 deletion
modules/core/www/idp/logout-iframe.js
www/resources/script.js
+3
-3
3 additions, 3 deletions
www/resources/script.js
with
4 additions
and
4 deletions
modules/core/www/idp/logout-iframe.js
+
1
−
1
View file @
fc57298d
...
@@ -5,7 +5,7 @@ function updateStatus()
...
@@ -5,7 +5,7 @@ function updateStatus()
{
{
var
nFailed
=
0
;
var
nFailed
=
0
;
var
nProgress
=
0
;
var
nProgress
=
0
;
for
(
sp
in
window
.
spStatus
)
{
for
(
var
sp
in
window
.
spStatus
)
{
switch
(
window
.
spStatus
[
sp
])
{
switch
(
window
.
spStatus
[
sp
])
{
case
'
failed
'
:
case
'
failed
'
:
nFailed
+=
1
;
nFailed
+=
1
;
...
...
This diff is collapsed.
Click to expand it.
www/resources/script.js
+
3
−
3
View file @
fc57298d
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
*/
*/
function
SimpleSAML_focus
(
id
)
function
SimpleSAML_focus
(
id
)
{
{
element
=
document
.
getElementById
(
id
);
var
element
=
document
.
getElementById
(
id
);
if
(
element
!=
null
)
{
if
(
element
!=
null
)
{
element
.
focus
();
element
.
focus
();
}
}
...
@@ -19,7 +19,7 @@ function SimpleSAML_focus(id)
...
@@ -19,7 +19,7 @@ function SimpleSAML_focus(id)
*/
*/
function
SimpleSAML_show
(
id
)
function
SimpleSAML_show
(
id
)
{
{
element
=
document
.
getElementById
(
id
);
var
element
=
document
.
getElementById
(
id
);
if
(
element
==
null
)
{
if
(
element
==
null
)
{
return
;
return
;
}
}
...
@@ -35,7 +35,7 @@ function SimpleSAML_show(id)
...
@@ -35,7 +35,7 @@ function SimpleSAML_show(id)
*/
*/
function
SimpleSAML_hide
(
id
)
function
SimpleSAML_hide
(
id
)
{
{
element
=
document
.
getElementById
(
id
);
var
element
=
document
.
getElementById
(
id
);
if
(
element
==
null
)
{
if
(
element
==
null
)
{
return
;
return
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment