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
4a9205c0
Commit
4a9205c0
authored
Nov 14, 2023
by
Romain DELEAU
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
guide update
parent
65603e5e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
2 deletions
+2
-2
app.component.ts
src/app/app.component.ts
+2
-2
GuideMakerWeb_v2.0.pdf
src/assets/GuideMakerWeb_v2.0.pdf
+0
-0
GuideMaker_v2.2.pdf
src/assets/GuideMaker_v2.2.pdf
+0
-0
No files found.
src/app/app.component.ts
View file @
4a9205c0
...
...
@@ -131,12 +131,12 @@ export class AppComponent {
}
downloadManual
():
void
{
const
manualUrl
=
'./assets/GuideMaker
Web_v2.0
.pdf'
;
const
manualUrl
=
'./assets/GuideMaker
_v2.2
.pdf'
;
this
.
http
.
get
(
manualUrl
,
{
responseType
:
'blob'
}).
subscribe
((
blob
:
Blob
)
=>
{
const
url
=
window
.
URL
.
createObjectURL
(
blob
);
const
a
=
document
.
createElement
(
'a'
);
a
.
href
=
url
;
a
.
download
=
'GuideMaker
Web_v2.0
.pdf'
;
a
.
download
=
'GuideMaker
_v2.2
.pdf'
;
document
.
body
.
appendChild
(
a
);
a
.
click
();
window
.
URL
.
revokeObjectURL
(
url
);
...
...
src/assets/GuideMakerWeb_v2.0.pdf
deleted
100644 → 0
View file @
65603e5e
File deleted
src/assets/GuideMaker_v2.2.pdf
0 → 100644
View file @
4a9205c0
File added
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