Skip to content

Commit ab655e4

Browse files
committed
* Because IE10 has trouble killing infinite-looping workers, support IE11+ only
1 parent 30c2cc6 commit ab655e4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

spreadsheet/README.md

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

1212
## Local Demo
1313

14-
Simply open `index.html` with Firefox, Safari or IE10+, and enter some content.
14+
Simply open `index.html` with Firefox, Safari or IE11+, and enter some content.
1515

1616
Values starting with `=` are parsed as formula written in JavaScript, for example `=A1*C1`.
1717

spreadsheet/chapter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ How many features can a Web application offer in 99 lines? Let’s see it in act
1616

1717
## Overview
1818

19-
The [spreadsheet](https://github.com/audreyt/500lines/tree/master/spreadsheet) directory contains our showcase for late-2014 editions of the three web languages: [HTML5](http://www.w3.org/TR/html5/) for structure, [CSS3](http://www.w3.org/TR/css3-ui/) for presentation, and the JS [ES6 “Harmony”](http://wiki.ecmascript.org/doku.php?id=harmony:specification_drafts) standard for interaction. We also use [Web Storage](http://www.whatwg.org/specs/web-apps/current-work/multipage/webstorage.html) for data persistence, and [Web Worker](http://www.whatwg.org/specs/web-apps/current-work/multipage/workers.html) for running JS code in the background. Since 2012, these web standards are supported by Firefox, Chrome, Internet Explorer 10+, as well as mobile browsers on iOS 5+ and Android 4+.
19+
The [spreadsheet](https://github.com/audreyt/500lines/tree/master/spreadsheet) directory contains our showcase for late-2014 editions of the three web languages: [HTML5](http://www.w3.org/TR/html5/) for structure, [CSS3](http://www.w3.org/TR/css3-ui/) for presentation, and the JS [ES6 “Harmony”](http://wiki.ecmascript.org/doku.php?id=harmony:specification_drafts) standard for interaction. We also use [Web Storage](http://www.whatwg.org/specs/web-apps/current-work/multipage/webstorage.html) for data persistence, and [Web Worker](http://www.whatwg.org/specs/web-apps/current-work/multipage/workers.html) for running JS code in the background. Since 2012, these web standards are supported by Firefox, Chrome, Internet Explorer 11+, as well as mobile browsers on iOS 5+ and Android 4+.
2020

2121
Now let’s open http://audreyt.github.io/500lines/spreadsheet/ in a browser:
2222

0 commit comments

Comments
 (0)