Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
RLG Maker
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Romain DELEAU
RLG Maker
Commits
9f5bfa15
Commit
9f5bfa15
authored
Oct 12, 2023
by
Romain DELEAU
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix images paths for prod
parent
06f4dce3
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
10 additions
and
10 deletions
+10
-10
app.component.ts
src/app/app.component.ts
+1
-1
role.component.html
src/app/pieces/role/role.component.html
+2
-2
step.component.ts
src/app/pieces/step/step.component.ts
+1
-1
annexe-task.component.ts
src/app/pieces/tasks/annexe-task/annexe-task.component.ts
+1
-1
final-task.component.ts
src/app/pieces/tasks/final-task/final-task.component.ts
+1
-1
optionnal-task.component.ts
...p/pieces/tasks/optionnal-task/optionnal-task.component.ts
+1
-1
random-event.component.ts
src/app/pieces/tasks/random-event/random-event.component.ts
+1
-1
repeat-task.component.ts
src/app/pieces/tasks/repeat-task/repeat-task.component.ts
+1
-1
task.component.ts
src/app/pieces/tasks/task/task.component.ts
+1
-1
No files found.
src/app/app.component.ts
View file @
9f5bfa15
...
@@ -63,7 +63,7 @@ export class AppComponent {
...
@@ -63,7 +63,7 @@ export class AppComponent {
}
}
downloadManual
():
void
{
downloadManual
():
void
{
const
manualUrl
=
'/assets/GuideMakerWeb_v2.0.pdf'
;
const
manualUrl
=
'
.
/assets/GuideMakerWeb_v2.0.pdf'
;
this
.
http
.
get
(
manualUrl
,
{
responseType
:
'blob'
}).
subscribe
((
blob
:
Blob
)
=>
{
this
.
http
.
get
(
manualUrl
,
{
responseType
:
'blob'
}).
subscribe
((
blob
:
Blob
)
=>
{
const
url
=
window
.
URL
.
createObjectURL
(
blob
);
const
url
=
window
.
URL
.
createObjectURL
(
blob
);
const
a
=
document
.
createElement
(
'a'
);
const
a
=
document
.
createElement
(
'a'
);
...
...
src/app/pieces/role/role.component.html
View file @
9f5bfa15
...
@@ -19,8 +19,8 @@
...
@@ -19,8 +19,8 @@
<div
class=
"piece-form"
>
<div
class=
"piece-form"
>
<div
class=
"piece-form-title"
>
{{role.intitule ? role.intitule : 'Role '+(i+1)}}
</div>
<div
class=
"piece-form-title"
>
{{role.intitule ? role.intitule : 'Role '+(i+1)}}
</div>
<mat-icon
class=
"piece-form-comment"
fontIcon=
"comment"
*
ngIf=
"role.comments.length > 0"
></mat-icon>
<mat-icon
class=
"piece-form-comment"
fontIcon=
"comment"
*
ngIf=
"role.comments.length > 0"
></mat-icon>
<img
src=
".
./../..
/assets/background-images/role_opacity0.png"
draggable=
"false"
*
ngIf=
"i == 0"
/>
<img
src=
"./assets/background-images/role_opacity0.png"
draggable=
"false"
*
ngIf=
"i == 0"
/>
<img
src=
".
./../..
/assets/background-images/role2_opacity0.png"
draggable=
"false"
*
ngIf=
"i == 1"
/>
<img
src=
"./assets/background-images/role2_opacity0.png"
draggable=
"false"
*
ngIf=
"i == 1"
/>
<div
class=
"piece-form-intitule"
>
<div
class=
"piece-form-intitule"
>
<label
for=
"intitule"
>
Intitulé
</label>
<label
for=
"intitule"
>
Intitulé
</label>
<input
name=
"intitule"
type=
"text"
[(
ngModel
)]="
role
.
intitule
"
(
change
)="
editTrace
($
event
,'
name
')"
placeholder=
"Développeur/euse web"
<input
name=
"intitule"
type=
"text"
[(
ngModel
)]="
role
.
intitule
"
(
change
)="
editTrace
($
event
,'
name
')"
placeholder=
"Développeur/euse web"
...
...
src/app/pieces/step/step.component.ts
View file @
9f5bfa15
...
@@ -27,7 +27,7 @@ export class StepComponent implements OnInit {
...
@@ -27,7 +27,7 @@ export class StepComponent implements OnInit {
displayMenu
:
string
=
'hide'
;
displayMenu
:
string
=
'hide'
;
pieceWidth
:
number
=
400
;
pieceWidth
:
number
=
400
;
urlIcon
:
string
=
'url(".
./../..
/assets/background-images/step.png")'
;
urlIcon
:
string
=
'url("./assets/background-images/step.png")'
;
constructor
(
protected
pieceDetailsService
:
PieceDetailsService
,
public
dialog
:
MatDialog
,
protected
tooltipService
:
TooltipService
)
{
}
constructor
(
protected
pieceDetailsService
:
PieceDetailsService
,
public
dialog
:
MatDialog
,
protected
tooltipService
:
TooltipService
)
{
}
...
...
src/app/pieces/tasks/annexe-task/annexe-task.component.ts
View file @
9f5bfa15
...
@@ -37,7 +37,7 @@ export class AnnexeTaskComponent implements OnInit {
...
@@ -37,7 +37,7 @@ export class AnnexeTaskComponent implements OnInit {
@
Input
()
i
!
:
number
;
@
Input
()
i
!
:
number
;
@
Input
()
j
!
:
number
;
@
Input
()
j
!
:
number
;
urlIcon
:
string
=
'url(".
./../../..
/assets/background-images/annexe.png")'
;
urlIcon
:
string
=
'url("./assets/background-images/annexe.png")'
;
antecedent
:
boolean
=
false
;
antecedent
:
boolean
=
false
;
constructor
(
protected
pieceDetailsService
:
PieceDetailsService
,
protected
tooltipService
:
TooltipService
,
public
dialog
:
MatDialog
,
constructor
(
protected
pieceDetailsService
:
PieceDetailsService
,
protected
tooltipService
:
TooltipService
,
public
dialog
:
MatDialog
,
...
...
src/app/pieces/tasks/final-task/final-task.component.ts
View file @
9f5bfa15
...
@@ -37,7 +37,7 @@ export class FinalTaskComponent implements OnInit {
...
@@ -37,7 +37,7 @@ export class FinalTaskComponent implements OnInit {
@
Input
()
i
!
:
number
;
@
Input
()
i
!
:
number
;
@
Input
()
j
!
:
number
;
@
Input
()
j
!
:
number
;
urlIcon
:
string
=
'url(".
./../../..
/assets/background-images/final.png")'
;
urlIcon
:
string
=
'url("./assets/background-images/final.png")'
;
antecedent
:
boolean
=
false
;
antecedent
:
boolean
=
false
;
constructor
(
protected
pieceDetailsService
:
PieceDetailsService
,
protected
tooltipService
:
TooltipService
,
public
dialog
:
MatDialog
,
constructor
(
protected
pieceDetailsService
:
PieceDetailsService
,
protected
tooltipService
:
TooltipService
,
public
dialog
:
MatDialog
,
...
...
src/app/pieces/tasks/optionnal-task/optionnal-task.component.ts
View file @
9f5bfa15
...
@@ -37,7 +37,7 @@ export class OptionnalTaskComponent implements OnInit {
...
@@ -37,7 +37,7 @@ export class OptionnalTaskComponent implements OnInit {
@
Input
()
i
!
:
number
;
@
Input
()
i
!
:
number
;
@
Input
()
j
!
:
number
;
@
Input
()
j
!
:
number
;
urlIcon
:
string
=
'url(".
./../../..
/assets/background-images/optionnal.png")'
;
urlIcon
:
string
=
'url("./assets/background-images/optionnal.png")'
;
antecedent
:
boolean
=
false
;
antecedent
:
boolean
=
false
;
constructor
(
protected
pieceDetailsService
:
PieceDetailsService
,
protected
tooltipService
:
TooltipService
,
public
dialog
:
MatDialog
,
constructor
(
protected
pieceDetailsService
:
PieceDetailsService
,
protected
tooltipService
:
TooltipService
,
public
dialog
:
MatDialog
,
...
...
src/app/pieces/tasks/random-event/random-event.component.ts
View file @
9f5bfa15
...
@@ -37,7 +37,7 @@ export class RandomEventComponent implements OnInit {
...
@@ -37,7 +37,7 @@ export class RandomEventComponent implements OnInit {
@
Input
()
i
!
:
number
;
@
Input
()
i
!
:
number
;
@
Input
()
j
!
:
number
;
@
Input
()
j
!
:
number
;
urlIcon
:
string
=
'url(".
./../../..
/assets/background-images/event.png")'
;
urlIcon
:
string
=
'url("./assets/background-images/event.png")'
;
antecedent
:
boolean
=
false
;
antecedent
:
boolean
=
false
;
constructor
(
protected
pieceDetailsService
:
PieceDetailsService
,
protected
tooltipService
:
TooltipService
,
public
dialog
:
MatDialog
,
constructor
(
protected
pieceDetailsService
:
PieceDetailsService
,
protected
tooltipService
:
TooltipService
,
public
dialog
:
MatDialog
,
...
...
src/app/pieces/tasks/repeat-task/repeat-task.component.ts
View file @
9f5bfa15
...
@@ -28,7 +28,7 @@ export class RepeatTaskComponent implements OnInit {
...
@@ -28,7 +28,7 @@ export class RepeatTaskComponent implements OnInit {
@
Input
()
i
!
:
number
;
@
Input
()
i
!
:
number
;
@
Input
()
j
!
:
number
;
@
Input
()
j
!
:
number
;
urlIcon
:
string
=
'url(".
./../../..
/assets/background-images/repeatTask.png")'
;
urlIcon
:
string
=
'url("./assets/background-images/repeatTask.png")'
;
constructor
(
protected
pieceDetailsService
:
PieceDetailsService
,
protected
tooltipService
:
TooltipService
,
public
dialog
:
MatDialog
)
{
}
constructor
(
protected
pieceDetailsService
:
PieceDetailsService
,
protected
tooltipService
:
TooltipService
,
public
dialog
:
MatDialog
)
{
}
...
...
src/app/pieces/tasks/task/task.component.ts
View file @
9f5bfa15
...
@@ -37,7 +37,7 @@ export class TaskComponent implements OnInit {
...
@@ -37,7 +37,7 @@ export class TaskComponent implements OnInit {
@
Input
()
i
!
:
number
;
@
Input
()
i
!
:
number
;
@
Input
()
j
!
:
number
;
@
Input
()
j
!
:
number
;
urlIcon
:
string
=
'url(".
./../../..
/assets/background-images/tache.png")'
;
urlIcon
:
string
=
'url("./assets/background-images/tache.png")'
;
antecedent
:
boolean
=
false
;
antecedent
:
boolean
=
false
;
constructor
(
protected
pieceDetailsService
:
PieceDetailsService
,
protected
tooltipService
:
TooltipService
,
public
dialog
:
MatDialog
,
constructor
(
protected
pieceDetailsService
:
PieceDetailsService
,
protected
tooltipService
:
TooltipService
,
public
dialog
:
MatDialog
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment