Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

848600 : ServiceUrl changes as per the new in the github sample #21

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import {
export class AppComponent {

// To utilize the server-backed PDF Viewer, need to specify the service URL. This can be done by including the **[serviceUrl]='service'** attribute within the <ejs-pdfviewer></ejs-pdfviewer> component in app.component.html file.
//public service: string ='https://ej2services.syncfusion.com/production/web-services/api/pdfviewer';
//public service: string ='https://services.syncfusion.com/angular/production/api/pdfviewer';

public document: string = 'https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import {
export class AppComponent implements OnInit {

// To utilize the server-backed PDF Viewer, need to specify the service URL. Within the template, configure the PDF Viewer by adding the **[serviceUrl]='service'** attribute inside the div element.
//public service = 'https://ej2services.syncfusion.com/production/web-services/api/pdfviewer';
//public service = 'https://services.syncfusion.com/angular/production/api/pdfviewer';

public document = "https://cdn.syncfusion.com/content/pdf/form-filling-document.pdf";

Expand Down
2 changes: 1 addition & 1 deletion Event/Export success/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import {
export class AppComponent {

// To utilize the server-backed PDF Viewer, need to specify the service URL. This can be done by including the **[serviceUrl]='service'** attribute within the <ejs-pdfviewer></ejs-pdfviewer> component in app.component.html file.
//public service: string = 'https://ej2services.syncfusion.com/production/web-services/api/pdfviewer';
//public service: string = 'https://services.syncfusion.com/angular/production/api/pdfviewer';

public document: string = 'https://cdn.syncfusion.com/content/pdf/form-filling-document.pdf';
ngOnInit(): void {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import {
export class AppComponent {

// To utilize the server-backed PDF Viewer, need to specify the service URL. This can be done by including the **[serviceUrl]='service'** attribute within the <ejs-pdfviewer></ejs-pdfviewer> component in app.component.html file.
public service: string = 'https://ej2services.syncfusion.com/production/web-services/api/pdfviewer';
//public service: string = 'https://services.syncfusion.com/angular/production/api/pdfviewer';

//Document path to load the PDF document
public document: string = 'https://cdn.syncfusion.com/content/pdf/form-filling-document.pdf';
Expand Down
2 changes: 1 addition & 1 deletion Getting started/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import {
PrintService]
})
export class AppComponent implements OnInit {
public service = 'https://ej2services.syncfusion.com/production/web-services/api/pdfviewer';
public service = 'https://services.syncfusion.com/angular/production/api/pdfviewer';
public document = 'https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf';
ngOnInit(): void {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ import {

export class AppComponent implements OnInit {
// To utilize the server-backed PDF Viewer, need to specify the service URL. Within the template, configure the PDF Viewer by adding the **[serviceUrl]='service'** attribute inside the div element.
// public service: string = 'https://ej2services.syncfusion.com/production/web-services/api/pdfviewer';
// public service: string = 'https://services.syncfusion.com/angular/production/api/pdfviewer';
public document: string = '';
ngOnInit(): void {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import {
})
export class AppComponent implements OnInit {
// To utilize the server-backed PDF Viewer, need to specify the service URL. Within the template, configure the PDF Viewer by adding the **[serviceUrl]='service'** attribute inside the div element.
//public service = 'https://ej2services.syncfusion.com/production/web-services/api/pdfviewer';
//public service = 'https://services.syncfusion.com/angular/production/api/pdfviewer';

public document = 'https://cdn.syncfusion.com/content/pdf/form-filling-document.pdf';
public toolbarSettings = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { Component, OnInit } from '@angular/core';
export class AppComponent implements OnInit {

// To utilize the server-backed PDF Viewer, need to specify the service URL. Within the template, configure the PDF Viewer by adding the **[serviceUrl]='service'** attribute inside the div element.
//public service = 'https://ej2services.syncfusion.com/production/web-services/api/pdfviewer';
//public service = 'https://services.syncfusion.com/angular/production/api/pdfviewer';

public document = 'https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf';
ngOnInit(): void {
Expand Down