Non breaking space Issue #81

This commit is contained in:
Peter Cottle 2013-03-23 21:46:36 -07:00
parent b1d0b896bc
commit 2957cdf966
5 changed files with 12 additions and 6 deletions

View file

@ -19716,9 +19716,11 @@ var SeriesView = BaseView.extend({
}, this);
this.destination = options.destination;
// use a non-breaking space to prevent the level from bouncing around
// from missing strings
this.JSON = {
displayName: intl.getIntlKey(this.info, 'displayName'),
about: intl.getIntlKey(this.info, 'about'),
about: intl.getIntlKey(this.info, 'about') || " ",
ids: this.levelIDs
};
@ -28800,9 +28802,11 @@ var SeriesView = BaseView.extend({
}, this);
this.destination = options.destination;
// use a non-breaking space to prevent the level from bouncing around
// from missing strings
this.JSON = {
displayName: intl.getIntlKey(this.info, 'displayName'),
about: intl.getIntlKey(this.info, 'about'),
about: intl.getIntlKey(this.info, 'about') || " ",
ids: this.levelIDs
};

File diff suppressed because one or more lines are too long

2
build/bundle.min.js vendored

File diff suppressed because one or more lines are too long

View file

@ -426,7 +426,7 @@
For a much easier time perusing the source, see the individual files at:
https://github.com/pcottle/learnGitBranching
-->
<script src="build/bundle.min.2068911f.js"></script>
<script src="build/bundle.min.8ffb162b.js"></script>
<!-- The advantage of github pages: super-easy, simple, slick static hostic.
The downside? No raw logs to parse for analytics, so I have to include

View file

@ -274,9 +274,11 @@ var SeriesView = BaseView.extend({
}, this);
this.destination = options.destination;
// use a non-breaking space to prevent the level from bouncing around
// from missing strings
this.JSON = {
displayName: intl.getIntlKey(this.info, 'displayName'),
about: intl.getIntlKey(this.info, 'about'),
about: intl.getIntlKey(this.info, 'about') || "&nbsp;",
ids: this.levelIDs
};