Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFS Gluon Firmware Selector
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
firmware
FFS Gluon Firmware Selector
Commits
986d44cb
Commit
986d44cb
authored
7 years ago
by
Andreas Ziegler
Browse files
Options
Downloads
Patches
Plain Diff
fix typo in css class name
parent
d084d0f3
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
app.css
+1
-1
1 addition, 1 deletion
app.css
app.js
+2
-2
2 additions, 2 deletions
app.js
with
3 additions
and
3 deletions
app.css
+
1
−
1
View file @
986d44cb
...
...
@@ -170,7 +170,7 @@ h1, h2, h3, h4, h5, h6 {
background-color
:
#009ee0
;
}
#wizard
#branch-pane
.show-experimental-warning
button
.dl-expermental
{
#wizard
#branch-pane
.show-experimental-warning
button
.dl-exper
i
mental
{
box-shadow
:
0
0
0.5em
#005ea0
inset
;
}
...
...
This diff is collapsed.
Click to expand it.
app.js
+
2
−
2
View file @
986d44cb
...
...
@@ -829,9 +829,9 @@ var firmwarewizard = function() {
'
(
'
+
prettyPrintVersion
(
rev
.
version
)
+
'
)
'
;
if
(
rev
.
branch
==
'
experimental
'
)
{
if
(
$
(
'
#branchselect .dl-expermental
'
)
===
null
)
{
if
(
$
(
'
#branchselect .dl-exper
i
mental
'
)
===
null
)
{
var
button
=
document
.
createElement
(
'
button
'
);
button
.
className
=
'
btn dl-expermental
'
;
button
.
className
=
'
btn dl-exper
i
mental
'
;
button
.
addEventListener
(
'
click
'
,
toggleExperimentalWarning
);
button
.
innerText
=
'
Experimentelle Firmware anzeigen
'
;
$
(
'
#branchselect
'
).
appendChild
(
button
);
...
...
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