Skip to content
This repository was archived by the owner on Jan 4, 2021. It is now read-only.

Commit 55c97bf

Browse files
author
Francois-Xavier Gentilhomme
committed
[FIX] switch urls
1 parent af0af5c commit 55c97bf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+16101
-53
lines changed

analysis.json

Lines changed: 7980 additions & 0 deletions
Large diffs are not rendered by default.

docs/components/myscript-common-element/.bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@
4545
"paper-toggle-button": "^2.0.0",
4646
"paper-slider": "^2.0.2"
4747
},
48-
"_release": "1156aa5abd",
48+
"_release": "4619a1bb50",
4949
"_resolution": {
5050
"type": "branch",
5151
"branch": "2.0.0-alpha1",
52-
"commit": "1156aa5abd8316a33b271f51ea58961532e84303"
52+
"commit": "4619a1bb5021f256a458c0f057d9d596ad5ee071"
5353
},
5454
"_source": "https://github.com/MyScript/myscript-common-element.git",
5555
"_target": "2.0.0-alpha1",

docs/components/myscript-common-element/examples/dev/debug.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<!-- Please change applicationkey and hmackey below with those send by mail during your registration. You can re-access them by connecting to your dashboard at developer.myscript.com with your myscript account -->
2222
<myscript-common-element debug
2323
scheme="https"
24-
host="newcloud.myscript.com"
24+
host="webdemoapi.myscript.com"
2525
applicationkey="515131ab-35fa-411c-bb4d-3917e00faf60"
2626
hmackey="54b2ca8a-6752-469d-87dd-553bb450e9ad">
2727
</myscript-common-element>

docs/components/myscript-common-element/examples/dev/get_stats.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<paper-toast class="fit-top"></paper-toast>
2323
<!-- Please change applicationkey and hmackey below with those send by mail during your registration. You can re-access them by connecting to your dashboard at developer.myscript.com with your myscript account -->
2424
<myscript-common-element scheme="https"
25-
host="newcloud.myscript.com"
25+
host="webdemoapi.myscript.com"
2626
applicationkey="515131ab-35fa-411c-bb4d-3917e00faf60"
2727
hmackey="54b2ca8a-6752-469d-87dd-553bb450e9ad">
2828
</myscript-common-element>

docs/components/myscript-common-element/examples/non-version-specific/change_language.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<myscript-common-element
3434
type="TEXT"
3535
scheme="https"
36-
host="newcloud.myscript.com"
36+
host="webdemoapi.myscript.com"
3737
applicationkey="515131ab-35fa-411c-bb4d-3917e00faf60"
3838
hmackey="54b2ca8a-6752-469d-87dd-553bb450e9ad">
3939
</myscript-common-element>

docs/components/myscript-common-element/examples/non-version-specific/custom_controls.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<paper-toast class="fit-top"></paper-toast>
3939
<!-- Please change applicationkey and hmackey below with those send by mail during your registration. You can re-access them by connecting to your dashboard at developer.myscript.com with your myscript account -->
4040
<myscript-common-element scheme="https"
41-
host="newcloud.myscript.com"
41+
host="webdemoapi.myscript.com"
4242
applicationkey="515131ab-35fa-411c-bb4d-3917e00faf60"
4343
hmackey="54b2ca8a-6752-469d-87dd-553bb450e9ad"
4444
ondemand

docs/components/myscript-common-element/examples/non-version-specific/customize_style.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
</nav>
7777
<!-- Please change applicationkey and hmackey below with those send by mail during your registration. You can re-access them by connecting to your dashboard at developer.myscript.com with your myscript account -->
7878
<myscript-common-element scheme="https"
79-
host="newcloud.myscript.com"
79+
host="webdemoapi.myscript.com"
8080
applicationkey="515131ab-35fa-411c-bb4d-3917e00faf60"
8181
hmackey="54b2ca8a-6752-469d-87dd-553bb450e9ad"
8282
themewidth="2"

docs/components/myscript-common-element/examples/non-version-specific/get_languages.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<body>
2121
<myscript-languages-element scheme="https"
22-
host="newcloud.myscript.com"
22+
host="webdemoapi.myscript.com"
2323
applicationkey="515131ab-35fa-411c-bb4d-3917e00faf60"
2424
hmackey="54b2ca8a-6752-469d-87dd-553bb450e9ad"
2525
select>

docs/components/myscript-common-element/examples/non-version-specific/get_languages_programmatic.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
console.log('All resources finished loading! Starting to init myscript-languages-element');
3030
const configuration = {
3131
scheme: 'https',
32-
host: 'newcloud.myscript.com',
32+
host: 'webdemoapi.myscript.com',
3333
applicationKey: '515131ab-35fa-411c-bb4d-3917e00faf60',
3434
hmacKey: '54b2ca8a-6752-469d-87dd-553bb450e9ad',
3535
sortByValue: true

docs/components/myscript-common-element/examples/non-version-specific/get_started.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<paper-toast class="fit-top"></paper-toast>
2626
<!-- Please change applicationkey and hmackey below with those send by mail during your registration. You can re-access them by connecting to your dashboard at developer.myscript.com with your myscript account -->
2727
<myscript-common-element scheme="https"
28-
host="newcloud.myscript.com"
28+
host="webdemoapi.myscript.com"
2929
applicationkey="515131ab-35fa-411c-bb4d-3917e00faf60"
3030
hmackey="54b2ca8a-6752-469d-87dd-553bb450e9ad">
3131
</myscript-common-element>

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy