Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simplesamlphp-module-elixir
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
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-module-elixir
Compare revisions
v5.1.5 to v6.0.0
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
perun/perun-proxyidp/v1/simplesamlphp-module-elixir
Select target project
No results found
v6.0.0
Select Git revision
Branches
main
v1.0
v1.1
v1.2
v1.3
v1.4
v2.0
v2.1
v2.2
Tags
v1.0.0
v1.0.1
v1.0.2
v1.1.0
v1.2.0
v1.2.1
v1.2.2
v1.3.0
v1.4.0
v2.0.0
v2.1.0
v2.2.0
v2.3.0
v3.0.0
v3.0.1
v4.0.0
v5.0.0
v5.0.1
v5.0.2
v5.0.3
v5.0.4
v5.1.0
v5.1.1
v5.1.2
v5.1.3
v5.1.4
v5.1.5
v6.0.0
v6.0.1
v6.0.2
v6.0.3
v6.0.4
v6.0.5
v6.0.6
v6.0.7
v6.0.8
45 results
Swap
Target
perun/perun-proxyidp/v1/simplesamlphp-module-elixir
Select target project
perun/perun-proxyidp/v1/simplesamlphp-module-elixir
1 result
v5.1.5
Select Git revision
Branches
main
v1.0
v1.1
v1.2
v1.3
v1.4
v2.0
v2.1
v2.2
Tags
v1.0.0
v1.0.1
v1.0.2
v1.1.0
v1.2.0
v1.2.1
v1.2.2
v1.3.0
v1.4.0
v2.0.0
v2.1.0
v2.2.0
v2.3.0
v3.0.0
v3.0.1
v4.0.0
v5.0.0
v5.0.1
v5.0.2
v5.0.3
v5.0.4
v5.1.0
v5.1.1
v5.1.2
v5.1.3
v5.1.4
v5.1.5
v6.0.0
v6.0.1
v6.0.2
v6.0.3
v6.0.4
v6.0.5
v6.0.6
v6.0.7
v6.0.8
45 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
www/res/js/charts.js
+391
-316
391 additions, 316 deletions
www/res/js/charts.js
www/res/js/cmservice.js
+10
-10
10 additions, 10 deletions
www/res/js/cmservice.js
with
401 additions
and
326 deletions
www/res/js/charts.js
View file @
1aba6688
This diff is collapsed.
Click to expand it.
www/res/js/cmservice.js
View file @
1aba6688
function
setup_check_transfer_of_data_handler
()
{
const
btn_submit
=
document
.
getElementById
(
"
submit
"
);
const
check_transfer_of_data
=
document
.
getElementById
(
"
transfer
"
);
if
(
check_transfer_of_data
==
null
)
{
return
;
}
check_transfer_of_data
.
onclick
=
function
(
e
)
{
btn_submit
.
disabled
=
!
check_transfer_of_data
.
checked
;
}
const
btn_submit
=
document
.
getElementById
(
"
submit
"
);
const
check_transfer_of_data
=
document
.
getElementById
(
"
transfer
"
);
if
(
check_transfer_of_data
==
null
)
{
return
;
}
check_transfer_of_data
.
onclick
=
function
(
e
)
{
btn_submit
.
disabled
=
!
check_transfer_of_data
.
checked
;
}
;
}
$
(
document
).
ready
(
function
()
{
setup_check_transfer_of_data_handler
();
$
(
document
).
ready
(
function
()
{
setup_check_transfer_of_data_handler
();
});
This diff is collapsed.
Click to expand it.
Prev
1
2
3
Next