Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
software-engineering-project
front-end
Commits
2b8929ce
Commit
2b8929ce
authored
3 years ago
by
Paul Legoût
Browse files
Options
Download
Patches
Plain Diff
slight updates
parent
995f6bfb
master
1 merge request
!16
slight updates
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/app/pages/data-entry/data-entry.component.ts
+1
-13
src/app/pages/data-entry/data-entry.component.ts
src/styles.css
+2
-1
src/styles.css
with
3 additions
and
14 deletions
+3
-14
src/app/pages/data-entry/data-entry.component.ts
+
1
−
13
View file @
2b8929ce
...
...
@@ -188,19 +188,7 @@ export class DataEntryComponent implements OnInit {
* Empty inputs
*/
public
emptyInputs
()
{
const
inputs
=
document
.
querySelectorAll
(
"
input
"
);
for
(
let
i
=
0
;
i
<
inputs
.
length
;
i
++
)
{
if
(
inputs
[
i
])
{
inputs
[
i
].
value
=
''
;
}
}
const
sel
=
document
.
querySelectorAll
(
"
mat-select
"
);
for
(
let
i
=
0
;
i
<
sel
.
length
;
i
++
)
{
if
(
sel
[
i
])
{
sel
[
i
].
textContent
=
''
;
}
}
location
.
reload
();
}
...
...
This diff is collapsed.
Click to expand it.
src/styles.css
+
2
−
1
View file @
2b8929ce
...
...
@@ -2,5 +2,6 @@
/* You can add global styles to this file, and also import other style files */
html
,
body
{
height
:
100%
;
}
html
,
body
{
height
:
100%
;
min-width
:
900px
;}
body
{
margin
:
auto
auto
;
font-family
:
Roboto
,
"Helvetica Neue"
,
sans-serif
;
width
:
75%
;}
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
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
Menu
Explore
Projects
Groups
Topics
Snippets