Skip to content

Commit 4e4f769

Browse files
authored
Merge pull request #142 from docusign/DEVDOCS-13596
fixing URL for DocuSign JS and namespaces
2 parents bb49a0a + 41b5cc7 commit 4e4f769

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/Controllers/Examples/eSignature/EG044FocusedView.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
* it directly from the app without having to open an email.
55
*/
66

7-
namespace Example\Controllers\Examples\eSignature;
7+
namespace DocuSign\Controllers\Examples\eSignature;
88

9-
use Example\Controllers\eSignBaseController;
10-
use Example\Services\Examples\eSignature\FocusedViewService;
9+
use DocuSign\Controllers\eSignBaseController;
10+
use DocuSign\Services\Examples\eSignature\FocusedViewService;
1111

1212
class EG044FocusedView extends eSignBaseController
1313
{

src/Services/Examples/eSignature/FocusedViewService.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Example\Services\Examples\eSignature;
3+
namespace DocuSign\Services\Examples\eSignature;
44

55
use DocuSign\eSign\Client\ApiException;
66
use DocuSign\eSign\Model\Document;
@@ -9,7 +9,7 @@
99
use DocuSign\eSign\Model\Signer;
1010
use DocuSign\eSign\Model\SignHere;
1111
use DocuSign\eSign\Model\Tabs;
12-
use Example\Services\SignatureClientService;
12+
use DocuSign\Services\SignatureClientService;
1313

1414
class FocusedViewService
1515
{

templates/esignature/embed.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ <h2>The document has been embedded with focused view.</h2>
3434

3535
<p><a href="/public/">Continue</a></p>
3636

37-
<script src='http://js.docusign.com/bundle.js'></script>
37+
<script src='https://js.docusign.com/bundle.js'></script>
3838
<script>
3939
window.DocuSign.loadDocuSign('{{ integration_key }}')
4040
.then((docusign) => {

0 commit comments

Comments
 (0)