Skip to content
This repository has been archived by the owner on Nov 6, 2024. It is now read-only.

Commit

Permalink
1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tomwayson committed Jan 2, 2018
1 parent dec4211 commit 9426e2b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,17 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
### Added
### Changed
- added Advanced Usage section and info on isomorphic apps to README
### Fixed
### Removed
### Breaking

## [1.6.1] - 2018-01-01

### Changed
- added Advanced Usage section and info on isomorphic apps to README
### Fixed
- `script.dataset` is `undefined` in IE10 [#67](https://github.com/Esri/esri-loader/pull/67)

## [1.6.0] - 2017-12-31
### Added
- default to version 4.6 of the ArcGIS API [#63](https://github.com/Esri/esri-loader/issues/63)
Expand Down Expand Up @@ -128,7 +134,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Added
- copied over source from angular-cli-esri and set up TS build

[Unreleased]: https://github.com/Esri/esri-loader/compare/v1.6.0...HEAD
[Unreleased]: https://github.com/Esri/esri-loader/compare/v1.6.1...HEAD
[1.6.1]: https://github.com/Esri/esri-loader/compare/v1.6.0...v1.6.1
[1.6.0]: https://github.com/Esri/esri-loader/compare/v1.5.3...v1.6.0
[1.5.3]: https://github.com/Esri/esri-loader/compare/v1.5.2...v1.5.3
[1.5.2]: https://github.com/Esri/esri-loader/compare/v1.5.1...v1.5.2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ Unfortunately the `__esri` namespace is not defined for 3.x types. You can use [

This library doesn't have any external dependencies, but the functions it exposes to load the ArcGIS API and it's modules expect to be run in a browser. You cannot run the ArcGIS API for JavaScript in Node, but [you _can_ use this library to isomorphic/universal applications](#isomorphicuniversal-applications).

This library supports [the same browers that are supported by the latest version of the ArcGIS API for JavaScript](https://developers.arcgis.com/javascript/latest/guide/system-requirements/index.html#supported-browsers). Although this library works with [v3.x of the ArcGIS API](https://developers.arcgis.com/javascript/3/), it does not support [some of the older browsers that version supports](https://developers.arcgis.com/javascript/3/jshelp/supported_browsers.html) like IE < 11.
This library officially supports [the same browers that are supported by the latest version of the ArcGIS API for JavaScript](https://developers.arcgis.com/javascript/latest/guide/system-requirements/index.html#supported-browsers). Since this library also works with [v3.x of the ArcGIS API](https://developers.arcgis.com/javascript/3/), the community [has made some effort](https://github.com/Esri/esri-loader/pull/67) to get it to work with [some of the older browsers supported by 3.x](https://developers.arcgis.com/javascript/3/jshelp/supported_browsers.html) like IE < 11.

### Promises

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "esri-loader",
"version": "1.6.0",
"version": "1.6.1",
"description": "A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications",
"files": [
"dist",
Expand Down
2 changes: 0 additions & 2 deletions src/esri-loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,6 @@ export function loadScript(options: ILoadScriptOptions = {}): Promise<HTMLScript
// create a script object whose source points to the API
script = createScript(options.url);
// once the script is loaded...
// TODO: once we no longer need to update the dataset, replace this w/
// handleScriptLoad(script, resolve, reject);
handleScriptLoad(script, () => {
// update the status of the script
script.setAttribute('data-esri-loader', 'loaded');
Expand Down

0 comments on commit 9426e2b

Please sign in to comment.