Skip to content

Commit

Permalink
Version 1.10.0, corresponding to December 2018 release of ArcGIS Online
Browse files Browse the repository at this point in the history
  • Loading branch information
asizer committed Dec 20, 2018
1 parent b133f34 commit 45d3bcf
Show file tree
Hide file tree
Showing 51 changed files with 346 additions and 148 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Story Map Cascade
# Story Map Cascade

The Story Map Cascade℠ app lets you combine narrative text with maps, images, and multimedia content in an engaging, full-screen scrolling experience. In a Cascade story, sections containing text and in-line media can be interspersed with "immersive" sections that fill the screen with your maps, 3D scenes, images, and videos. Cascade is ideal for making compelling, in-depth stories that are very easy for people to navigate.

Expand All @@ -8,7 +8,7 @@ The Story Map Cascade℠ app lets you combine narrative text with maps, images,
[Download](http://links.esri.com/storymaps/story_map_cascade_zip) |
[Cascade page on Esri Story Maps website](https://storymaps.arcgis.com/en/app-list/cascade/)

**Latest release is version 1.8.3**, if you want to be informed of new releases, we recommend you watch this repository ([see GitHub help](https://help.github.com/articles/watching-repositories)). See the [release page](https://github.com/Esri/story-map-cascade/releases) for release notes.
**Latest release is version 1.10.0**, if you want to be informed of new releases, we recommend you watch this repository ([see GitHub help](https://help.github.com/articles/watching-repositories)). See the [release page](https://github.com/Esri/story-map-cascade/releases) for release notes.

## Help content

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cascade-storytelling-template-js-dev",
"version": "1.9.1",
"version": "1.10.0",
"homepage": "",
"authors": [
"Gregory L'Azou <glazou@esri.com>"
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Storymaps-Cascade",
"version": "1.9.1",
"version": "1.10.0",
"description": "The Story Map Cascade app lets you combine narrative text with maps, images, and multimedia content in an engaging, full-screen scrolling experience",
"license": "Apache-2.0",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions src/app/storymaps/issue-checker/src/PremiumManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ export default class PremiumManager {
}

_resolvePremiumContent(url) {
let isSubscription = this._appProxySettings._isPremium(url);
let isPremium = this._appProxySettings._isSubscriber(url);
let isSubscription = this._appProxySettings.isPremium(url);
let isPremium = this._appProxySettings.isSubscriber(url);

// premium content that consumes credits will return true for both of the above, but we want to differentiate the two.
// if it is both, flag it as premium only and not subscription.
Expand Down
12 changes: 0 additions & 12 deletions src/app/storymaps/issue-checker/src/media/Audio.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,6 @@ export default class Audio extends Media {
Audio.resolveAndClear(audio, timer, resolve);
};

trialAudio.ondurationchange = function() {
if (trialAudio.duration) {
window.clearTimeout(timer);
if (isFinite(trialAudio.duration)) {
Audio.resolveAndClear(audio, timer, resolve);
}
else {
Audio._onAudioError(audio, resolve);
}
}
};

trialAudio.onerror = function() {
window.clearTimeout(timer);
Audio._onAudioError(audio, resolve);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@

}

.browse-toggle.googlePhotos {
display: none;
}

.mp-browse-toggles {
display: flex;
height: @toggles-height;
Expand Down Expand Up @@ -134,7 +138,6 @@
@media (max-width: @screen-md) {
& {
.browse-toggle {
min-width: 16%;
font-size: @fontsize-md;
padding: 0 8px;

Expand Down
Loading

1 comment on commit 45d3bcf

@msjoymc
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanx

Please sign in to comment.