diff --git a/demos/datagrid/README.md b/demos/datagrid/README.md index 7f2113e..0134c3e 100644 --- a/demos/datagrid/README.md +++ b/demos/datagrid/README.md @@ -5,7 +5,7 @@ with other JS libraries such as data grids for previewing data. After extensive testing, [`canvas-datagrid`](https://tonygermaneri.github.io/canvas-datagrid/) stood out as a very high-performance grid with an incredibly simple API. -This demo is available at +This demo is available at ## Obtaining the Library diff --git a/demos/headless/README.md b/demos/headless/README.md index b11e1dd..d26ef0f 100644 --- a/demos/headless/README.md +++ b/demos/headless/README.md @@ -33,7 +33,7 @@ the webpage. The `dist` versions are suitable for web pages. This was tested in wkhtmltopdf 0.12.4, installed using the official binaries: ```bash -$ wkhtmltopdf --javascript-delay 20000 http://oss.sheetjs.com/js-xlsx/tests/ test.pdf +$ wkhtmltopdf --javascript-delay 20000 http://oss.sheetjs.com/sheetjs/tests/ test.pdf ``` ## SlimerJS diff --git a/demos/headless/phantomjs.js b/demos/headless/phantomjs.js index 096a717..0281d48 100644 --- a/demos/headless/phantomjs.js +++ b/demos/headless/phantomjs.js @@ -3,7 +3,7 @@ var fs = require('fs'); var xlsx = require('../../xlsx'); var page = require('webpage').create(); -page.open('http://oss.sheetjs.com/js-xlsx/tests/', function(status) { +page.open('http://oss.sheetjs.com/sheetjs/tests/', function(status) { var data = fs.read('sheetjs.xlsx', {mode: 'rb', charset: 'utf8'}); var workbook = xlsx.read(data, {type: 'binary'}); diff --git a/demos/headless/puppeteer.js b/demos/headless/puppeteer.js index c016fec..0958297 100644 --- a/demos/headless/puppeteer.js +++ b/demos/headless/puppeteer.js @@ -5,7 +5,7 @@ const puppeteer = require('puppeteer'); const browser = await puppeteer.launch(); const page = await browser.newPage(); - await page.goto('http://oss.sheetjs.com/js-xlsx/tests/', {waitUntil: 'load'}); + await page.goto('http://oss.sheetjs.com/sheetjs/tests/', {waitUntil: 'load'}); await page.waitFor(30*1000); await page.pdf({path: 'test.pdf', format: 'A4'}); diff --git a/demos/headless/slimerjs.js b/demos/headless/slimerjs.js index 0f68ffe..1d1fe16 100644 --- a/demos/headless/slimerjs.js +++ b/demos/headless/slimerjs.js @@ -3,7 +3,7 @@ var fs = require('fs'); var xlsx = require('../../dist/xlsx.full.min'); var page = require('webpage').create(); -page.open('http://oss.sheetjs.com/js-xlsx/tests/', function(status) { +page.open('http://oss.sheetjs.com/sheetjs/tests/', function(status) { var data = fs.read('sheetjs.xlsx', {mode: 'rb', charset: 'utf8'}); var workbook = xlsx.read(data, {type: 'binary'}); diff --git a/demos/nwjs/README.md b/demos/nwjs/README.md index 2e3fceb..efbfe7f 100644 --- a/demos/nwjs/README.md +++ b/demos/nwjs/README.md @@ -7,7 +7,7 @@ The demonstration uses NW.js 0.24 with the dist script. The standard HTML5 `FileReader` techniques from the browser apply to NW.js! This demo includes a drag-and-drop box as well as a file input box, mirroring -the [SheetJS Data Preview Live Demo](http://oss.sheetjs.com/js-xlsx/). +the [SheetJS Data Preview Live Demo](https://oss.sheetjs.com/sheetjs/). ## Writing data