diff options
author | Wout <wout@mick-wout.com> | 2021-06-09 19:02:22 +0100 |
---|---|---|
committer | Wout <wout@mick-wout.com> | 2021-06-09 19:02:22 +0100 |
commit | 17d5f8ae58720f61094ee5221d16c89dbe66d98a (patch) | |
tree | edbbdd32b1449b069cb6b612ed6a592e4adf077b | |
parent | b7006dbe4ddf64e5d4076e65d9f423b6d17e74ec (diff) | |
download | svg.js-17d5f8ae58720f61094ee5221d16c89dbe66d98a.tar.gz svg.js-17d5f8ae58720f61094ee5221d16c89dbe66d98a.zip |
fix: change domain name to svgjs.dev
-rw-r--r-- | bench/runner.html | 2 | ||||
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | spec/spec/elements/A.js | 2 | ||||
-rw-r--r-- | src/modules/core/namespaces.js | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/bench/runner.html b/bench/runner.html index 5b6040c..fbd4e24 100644 --- a/bench/runner.html +++ b/bench/runner.html @@ -36,7 +36,7 @@ </head> <body> <div id="draw"></div> - <svg id="native" width="100" height="100" xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.com/svgjs"></svg> + <svg id="native" width="100" height="100" xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev/svgjs"></svg> <script src="../dist/svg.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/snap.svg/0.5.1/snap.svg-min.js"></script> <script src="svg.bench.js"></script> diff --git a/package.json b/package.json index 69a5714..24a2320 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ }, { "name": "Jon Ege Ronnenberg", - "email": "jon@svgjs.com", + "email": "jon@svgjs.dev", "url": "https://keybase.io/dotnetcarpenter" } ], diff --git a/spec/spec/elements/A.js b/spec/spec/elements/A.js index 4c0c3bf..854204e 100644 --- a/spec/spec/elements/A.js +++ b/spec/spec/elements/A.js @@ -4,7 +4,7 @@ import { A, G, Rect } from '../../../src/main.js' const { any } = jasmine -const url = 'https://svgjs.com' +const url = 'https://svgjs.dev' describe('A.js', () => { describe('()', () => { diff --git a/src/modules/core/namespaces.js b/src/modules/core/namespaces.js index 3968e63..778d402 100644 --- a/src/modules/core/namespaces.js +++ b/src/modules/core/namespaces.js @@ -3,4 +3,4 @@ export const svg = 'http://www.w3.org/2000/svg' export const html = 'http://www.w3.org/1999/xhtml' export const xmlns = 'http://www.w3.org/2000/xmlns/' export const xlink = 'http://www.w3.org/1999/xlink' -export const svgjs = 'http://svgjs.com/svgjs' +export const svgjs = 'http://svgjs.dev/svgjs' |