We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5323d62 commit 90eaf33Copy full SHA for 90eaf33
_includes/appstoreimages.html
@@ -38,9 +38,13 @@
38
39
// Set app name using the iOS app ID if it is not set manually in _config.yml
40
var $appName = $(".appName");
41
- var $headerName = $(".headerName");
42
if ($.trim($($appName).text()).length == 0) {
43
$($appName).html(appInfo.trackName);
+ }
44
+
45
+ // Set the name displayed in the header if it is not set manually in _config.yml
46
+ var $headerName = $(".headerName");
47
+ if ($.trim($($headerName).text()).length == 0) {
48
$($headerName).html(appInfo.trackName);
49
}
50
0 commit comments