Skip to content

Commit

Permalink
V1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregory L'Azou committed Sep 15, 2016
1 parent 30722e8 commit 9be36a8
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.1**, if you want to be informed of new releases, we recommend you to 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.1.2**, if you want to be informed of new releases, we recommend you to 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.1.1",
"version": "1.1.2",
"homepage": "",
"authors": [
"Gregory L'Azou <glazou@esri.com>"
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Storymaps-Cascade",
"version": "1.1.1",
"version": "1.1.2",
"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 All @@ -15,7 +15,7 @@
"babel-plugin-transform-object-assign": "^6.5.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"csso": "~1.3.10",
"csso": "~1.3.10",
"eslint": "^2.7.0",
"eslint-plugin-react": "^4.3.0",
"grunt": "^1.0.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
position: fixed;
top: 50px;
right: 10px;
z-index: 9;
z-index: 502;
text-align: right;
}

Expand Down
8 changes: 5 additions & 3 deletions src/app/storymaps/tpl/view/section/Title.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
{{{background}}}

<div class="foreground">
<div class="text-background">
<h1 class="fg-title title-text text-shadow">{{title}}</h1>
</div>
{{#if showTitle}}
<div class="text-background">
<h1 class="fg-title title-text text-shadow">{{title}}</h1>
</div>
{{/if}}
</div>

<div class="fg-credits">{{credits}}</div>
Expand Down
3 changes: 2 additions & 1 deletion src/app/storymaps/tpl/view/section/Title.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ export default class Title {
media: this._backgroundMedia
}),
title: foreground.title,
showTitle: app.isInBuilder || foreground.title,
credits: foreground.credits
});
}
Expand Down Expand Up @@ -108,7 +109,7 @@ export default class Title {
this._applyConfig();
}

_applyConfig() {
_applyConfig() {
if (this._section.foreground && this._section.foreground.options) {
let style = this._section.foreground.options.titleStyle;
let textNode = this._node.find('.title-text');
Expand Down
2 changes: 1 addition & 1 deletion src/app/storymaps/tpl/view/ui/Autoplay.less
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
border-radius: 5px;
border: 1px solid #FFF;

z-index: 9;
z-index: 999;
text-align: center;
cursor: pointer;
color: rgba(255, 255, 255, 0.85);
Expand Down
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@

<script type="text/javascript">
var app = {
version: '1.1.1',
version: '1.1.2',
pathJSAPI3: '//js.arcgis.com/3.18/',
pathJSAPI4: '//js.arcgis.com/4.1/'
};
Expand Down

0 comments on commit 9be36a8

Please sign in to comment.