Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
arsnova-lite
Manage
Activity
Members
Labels
Plan
Issues
24
Issue boards
Milestones
Wiki
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Privacy
Imprint
Contact
Snippets
Groups
Projects
Show more breadcrumbs
ARSnova
arsnova-lite
Commits
0a6b13e2
Commit
0a6b13e2
authored
7 years ago
by
Heinrich Marks
Committed by
Thomas Lenz
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Adjust HTML
parent
35501845
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!75
Resolve "content creation (text) followup"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/app/content-creation/content-creation.component.html
+13
-5
13 additions, 5 deletions
src/app/content-creation/content-creation.component.html
with
13 additions
and
5 deletions
src/app/content-creation/content-creation.component.html
+
13
−
5
View file @
0a6b13e2
<form
(ngSubmit)=
"addContent(subjectTitle.value, bodyText.value)"
>
<form
(ngSubmit)=
"addContent(subjectTitle.value, bodyText.value
, contentRound.value
)"
>
<div
fxLayout=
"column"
fxLayoutAlign=
"center"
fxLayoutGap=
"10px"
>
<mat-form-field>
<input
class=
"input-block"
#subjectTitle
matInput
(keypress)=
"resetEmptyInputs()"
placeholder=
"Subject"
[(ngModel)]=
"subject"
>
<input
class=
"input-block"
#subjectTitle
matInput
(keypress)=
"resetEmptyInputs()"
placeholder=
"Subject"
[(ngModel)]=
"subject"
name=
"Title"
>
<button
mat-button
*ngIf=
"subject"
type=
"text"
matSuffix
mat-icon-button
aria-label=
"Clear"
(click)=
"subject=''"
>
<mat-icon>
close
</mat-icon>
</button>
</mat-form-field>
<mat-form-field>
<input
class=
"input-block"
#bodyText
matInput
matTextareaAutosize
matAutosizeMinRows=
"3"
matAutosizeMaxRows=
"8"
(keypress)=
"resetEmptyInputs()"
placeholder=
"Body"
[(ngModel)]=
"body"
>
<button
mat-button
matSuffix
mat-icon-button
aria-label=
"Clear"
(click)=
"subject=''; body=''"
>
<input
class=
"input-block"
#contentRound
matInput
(keypress)=
"resetEmptyInputs()"
placeholder=
"Round"
[(ngModel)]=
"round"
name=
"Round"
>
</mat-form-field>
<mat-form-field>
<textarea
#bodyText
matInput
matTextareaAutosize
matAutosizeMinRows=
"3"
matAutosizeMaxRows=
"8"
(keypress)=
"resetEmptyInputs()"
placeholder=
"Body"
[(ngModel)]=
"body"
name=
"Text"
></textarea>
<button
mat-button
*ngIf=
"body"
type=
"text"
matSuffix
mat-icon-button
aria-label=
"Clear"
(click)=
"body=''"
>
<mat-icon>
close
</mat-icon>
</button>
</mat-form-field>
...
...
This diff is collapsed.
Click to expand it.
Preview
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