Skip to content

Commit 6a77268

Browse files
committed
typo
1 parent e9d4b6c commit 6a77268

30 files changed

+30
-30
lines changed

examples/attachments.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/background.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/basics.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pdfmake.addFonts({
1818

1919
pdfmake.setUrlAccessPolicy((url) => {
2020
// this can be used to restrict allowed domains
21-
return url.startsWith('https://');;
21+
return url.startsWith('https://');
2222
});
2323

2424

examples/columns_simple.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pdfmake.addFonts(Roboto);
66

77
pdfmake.setUrlAccessPolicy((url) => {
88
// this can be used to restrict allowed domains
9-
return url.startsWith('https://');;
9+
return url.startsWith('https://');
1010
});
1111

1212

examples/images.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/links.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pdfmake.addFonts(Roboto);
66

77
pdfmake.setUrlAccessPolicy((url) => {
88
// this can be used to restrict allowed domains
9-
return url.startsWith('https://');;
9+
return url.startsWith('https://');
1010
});
1111

1212

examples/lists.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pdfmake.addFonts(Roboto);
66

77
pdfmake.setUrlAccessPolicy((url) => {
88
// this can be used to restrict allowed domains
9-
return url.startsWith('https://');;
9+
return url.startsWith('https://');
1010
});
1111

1212

examples/margins.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pdfmake.addFonts(Roboto);
66

77
pdfmake.setUrlAccessPolicy((url) => {
88
// this can be used to restrict allowed domains
9-
return url.startsWith('https://');;
9+
return url.startsWith('https://');
1010
});
1111

1212

examples/outlines.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pdfmake.addFonts(Roboto);
66

77
pdfmake.setUrlAccessPolicy((url) => {
88
// this can be used to restrict allowed domains
9-
return url.startsWith('https://');;
9+
return url.startsWith('https://');
1010
});
1111

1212

examples/pageReference.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pdfmake.addFonts(Roboto);
66

77
pdfmake.setUrlAccessPolicy((url) => {
88
// this can be used to restrict allowed domains
9-
return url.startsWith('https://');;
9+
return url.startsWith('https://');
1010
});
1111

1212

0 commit comments

Comments
 (0)