From bd87b3c52bdd94439bef90e883166d479e210279 Mon Sep 17 00:00:00 2001 From: RomanTsukanov Date: Thu, 28 Mar 2024 14:49:22 +0400 Subject: [PATCH] Update titles in dashboard projects --- get-started-analytics/angular/README.md | 4 ++-- get-started-analytics/angular/package.json | 2 +- get-started-analytics/angular/src/app/app.component.ts | 2 +- get-started-analytics/jquery/README.md | 4 ++-- get-started-analytics/knockout/README.md | 4 ++-- get-started-analytics/knockout/index.html | 2 +- get-started-analytics/react/README.md | 4 ++-- get-started-analytics/react/package.json | 2 +- get-started-analytics/react/public/index.html | 2 +- get-started-analytics/vue/README.md | 4 ++-- get-started-analytics/vue/package.json | 2 +- get-started-analytics/vue/public/index.html | 2 +- 12 files changed, 17 insertions(+), 17 deletions(-) diff --git a/get-started-analytics/angular/README.md b/get-started-analytics/angular/README.md index 25658d7..98f5603 100644 --- a/get-started-analytics/angular/README.md +++ b/get-started-analytics/angular/README.md @@ -1,6 +1,6 @@ -# Get Started with SurveyJS Analytics - Angular +# Get Started with SurveyJS Dashboard for Angular -This example is used in the following help topic: [Add Survey Analytics to an Angular Application](https://surveyjs.io/Documentation/Analytics?id=get-started-angular). It was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.6. +This example is used in the following help topic: [Add SurveyJS Dashboard to an Angular Application](https://surveyjs.io/dashboard/documentation/get-started-angular). It was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.6. ## Development server diff --git a/get-started-analytics/angular/package.json b/get-started-analytics/angular/package.json index 03c76ff..b7d7d4f 100644 --- a/get-started-analytics/angular/package.json +++ b/get-started-analytics/angular/package.json @@ -1,5 +1,5 @@ { - "name": "get-started-analytics-angular", + "name": "get-started-dashboard-angular", "version": "0.0.0", "scripts": { "ng": "ng", diff --git a/get-started-analytics/angular/src/app/app.component.ts b/get-started-analytics/angular/src/app/app.component.ts index 58fc4e1..99211b9 100644 --- a/get-started-analytics/angular/src/app/app.component.ts +++ b/get-started-analytics/angular/src/app/app.component.ts @@ -53,7 +53,7 @@ const vizPanelOptions = { styleUrls: ['./app.component.css'] }) export class AppComponent implements AfterViewInit { - title = 'SurveyJS Analytics for Angular'; + title = 'SurveyJS Dashboard for Angular'; @ViewChild("surveyVizPanel") elem: ElementRef | undefined; ngAfterViewInit(): void { diff --git a/get-started-analytics/jquery/README.md b/get-started-analytics/jquery/README.md index 09b2477..1379134 100644 --- a/get-started-analytics/jquery/README.md +++ b/get-started-analytics/jquery/README.md @@ -1,3 +1,3 @@ -# Get Started with SurveyJS Analytics - jQuery +# Get Started with SurveyJS Dashboard for jQuery -SurveyJS Analytics is built upon Knockout and does not have an individual version for jQuery. However, you can employ [SurveyJS Analytics for Knockout](../knockout/) in your jQuery application without any changes. \ No newline at end of file +SurveyJS Dashboard is built upon Knockout and does not have an individual version for jQuery. However, you can employ [SurveyJS Dashboard for Knockout](../knockout/) in your jQuery application without any changes. \ No newline at end of file diff --git a/get-started-analytics/knockout/README.md b/get-started-analytics/knockout/README.md index f8ae897..a61b78d 100644 --- a/get-started-analytics/knockout/README.md +++ b/get-started-analytics/knockout/README.md @@ -1,3 +1,3 @@ -# Get Started with SurveyJS Analytics - Knockout +# Get Started with SurveyJS Dashboard for Knockout -This example is used in the following help topic: [Add Survey Analytics to a Knockout Application](https://surveyjs.io/Documentation/Analytics?id=get-started-knockout). To run the example, open `index.html` in your browser. \ No newline at end of file +This example is used in the following help topic: [Add SurveyJS Dashboard to a Knockout or jQuery Application](https://surveyjs.io/dashboard/documentation/get-started-knockout-jquery). To run the example, open `index.html` in your browser. \ No newline at end of file diff --git a/get-started-analytics/knockout/index.html b/get-started-analytics/knockout/index.html index c0d8dbc..a2f8b70 100644 --- a/get-started-analytics/knockout/index.html +++ b/get-started-analytics/knockout/index.html @@ -1,7 +1,7 @@ - SurveyJS Analytics for Knockout + SurveyJS Dashboard for Knockout diff --git a/get-started-analytics/react/README.md b/get-started-analytics/react/README.md index b1d71bf..0189f80 100644 --- a/get-started-analytics/react/README.md +++ b/get-started-analytics/react/README.md @@ -1,6 +1,6 @@ -# Get Started with SurveyJS Analytics - React +# Get Started with SurveyJS Dashboard for React -This example is used in the following help topic: [Add Survey Analytics to a React Application](https://surveyjs.io/Documentation/Analytics?id=get-started-react). It was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). +This example is used in the following help topic: [Add SurveyJS Dashboard to a React Application](https://surveyjs.io/dashboard/documentation/get-started-react). It was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). ## Development server diff --git a/get-started-analytics/react/package.json b/get-started-analytics/react/package.json index 36af9da..c6c31a8 100644 --- a/get-started-analytics/react/package.json +++ b/get-started-analytics/react/package.json @@ -1,5 +1,5 @@ { - "name": "get-started-analytics-react", + "name": "get-started-dashboard-react", "version": "0.1.0", "private": true, "dependencies": { diff --git a/get-started-analytics/react/public/index.html b/get-started-analytics/react/public/index.html index 6452ed2..743aad3 100644 --- a/get-started-analytics/react/public/index.html +++ b/get-started-analytics/react/public/index.html @@ -24,7 +24,7 @@ work correctly both with client-side routing and a non-root public URL. Learn how to configure a non-root public URL by running `npm run build`. --> - SurveyJS Analytics for React + SurveyJS Dashboard for React diff --git a/get-started-analytics/vue/README.md b/get-started-analytics/vue/README.md index d3d62ad..4e72378 100644 --- a/get-started-analytics/vue/README.md +++ b/get-started-analytics/vue/README.md @@ -1,6 +1,6 @@ -# Get Started with SurveyJS Analytics - Vue +# Get Started with SurveyJS Dashboard for Vue -This example is used in the following help topic: [Add Survey Analytics to a Vue Application](https://surveyjs.io/Documentation/Analytics?id=get-started-vue). +This example is used in the following help topic: [Add SurveyJS Dashboard to a Vue Application](https://surveyjs.io/dashboard/documentation/get-started-vue). ## Project setup ``` diff --git a/get-started-analytics/vue/package.json b/get-started-analytics/vue/package.json index 2918eab..2a4596d 100644 --- a/get-started-analytics/vue/package.json +++ b/get-started-analytics/vue/package.json @@ -1,5 +1,5 @@ { - "name": "get-started-analytics-vue", + "name": "get-started-dashboard-vue", "version": "0.1.0", "private": true, "scripts": { diff --git a/get-started-analytics/vue/public/index.html b/get-started-analytics/vue/public/index.html index 71850ee..2870ea3 100644 --- a/get-started-analytics/vue/public/index.html +++ b/get-started-analytics/vue/public/index.html @@ -5,7 +5,7 @@ - SurveyJS Analytics for Vue + SurveyJS Dashboard for Vue