Skip to content

Commit

Permalink
Fix include
Browse files Browse the repository at this point in the history
  • Loading branch information
mramato committed May 14, 2019
1 parent 112384e commit 4f5a756
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Change Log
* Added support for new `BingMapsStyle` values `ROAD_ON_DEMAND` and `AERIAL_WITH_LABELS_ON_DEMAND`. The older versions of these, `ROAD` and `AERIAL_WITH_LABELS`, have been deprecated by Bing. [#7808](https://github.com/AnalyticalGraphicsInc/cesium/pull/7808)
* Added syntax to delete data from existing properties via CZML. [#7818](https://github.com/AnalyticalGraphicsInc/cesium/pull/7818)
* `BingMapsImageryProvider` now uses `DiscardEmptyTileImagePolicy` by default to detect missing tiles as zero-length responses instead of inspecting pixel values. [#7810](https://github.com/AnalyticalGraphicsInc/cesium/pull/7810)

##### Fixes :wrench:
* Fixed an edge case where Cesium would provide ion access token credentials to non-ion servers if the actual asset entrypoint was being hosted by ion. [#7839](https://github.com/AnalyticalGraphicsInc/cesium/pull/7839)

Expand Down
8 changes: 4 additions & 4 deletions Source/Core/IonResource.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
define([
'../ThirdParty/Uri',
'../ThirdParty/when',
'./Check',
'./Credit',
Expand All @@ -7,9 +8,9 @@ define([
'./defineProperties',
'./Ion',
'./Resource',
'./RuntimeError',
'ThirdParty/Uri'
'./RuntimeError'
], function(
Uri,
when,
Check,
Credit,
Expand All @@ -18,8 +19,7 @@ define([
defineProperties,
Ion,
Resource,
RuntimeError,
Uri) {
RuntimeError) {
'use strict';

/**
Expand Down

0 comments on commit 4f5a756

Please sign in to comment.