Browse Source

fix: change domain name to svgjs.dev

tags/3.1.0
Wout 3 years ago
parent
commit
17d5f8ae58
4 changed files with 4 additions and 4 deletions
  1. 1
    1
      bench/runner.html
  2. 1
    1
      package.json
  3. 1
    1
      spec/spec/elements/A.js
  4. 1
    1
      src/modules/core/namespaces.js

+ 1
- 1
bench/runner.html View File

@@ -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>

+ 1
- 1
package.json View File

@@ -39,7 +39,7 @@
},
{
"name": "Jon Ege Ronnenberg",
"email": "jon@svgjs.com",
"email": "jon@svgjs.dev",
"url": "https://keybase.io/dotnetcarpenter"
}
],

+ 1
- 1
spec/spec/elements/A.js View File

@@ -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('()', () => {

+ 1
- 1
src/modules/core/namespaces.js View File

@@ -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'

Loading…
Cancel
Save