diff --git a/rpg-docs/client/views/characterList/characterSideList.css b/rpg-docs/client/views/characterList/characterSideList.css index c6f4204f..6e09e834 100644 --- a/rpg-docs/client/views/characterList/characterSideList.css +++ b/rpg-docs/client/views/characterList/characterSideList.css @@ -6,6 +6,7 @@ padding: 8px 0 8px 16px; text-overflow: ellipsis; white-space: nowrap; + text-decoration: none; } .singleLineItem core-icon { @@ -19,4 +20,4 @@ /* Required for text-overflow to do anything */ white-space: nowrap; overflow: hidden; -} \ No newline at end of file +} diff --git a/rpg-docs/client/views/characterList/characterSideList.html b/rpg-docs/client/views/characterList/characterSideList.html index 6755f067..5cde2abe 100644 --- a/rpg-docs/client/views/characterList/characterSideList.html +++ b/rpg-docs/client/views/characterList/characterSideList.html @@ -3,11 +3,12 @@ {{#if characters.count}}
{{#each characters}} -
{{name}}
-
+ {{/each}}
{{/if}} diff --git a/rpg-docs/client/views/characterList/characterSideList.js b/rpg-docs/client/views/characterList/characterSideList.js index 9bc9637a..a0a2220c 100644 --- a/rpg-docs/client/views/characterList/characterSideList.js +++ b/rpg-docs/client/views/characterList/characterSideList.js @@ -23,7 +23,7 @@ Template.characterSideList.helpers({ Template.characterSideList.events({ "tap .singleLineItem": function(event, instance) { - Router.go("characterSheet", {_id: this._id}); + //Router.go("characterSheet", {_id: this._id}); $("core-drawer-panel").get(0).closeDrawer(); }, "tap core-item": function() { diff --git a/rpg-docs/client/views/layout/layout.css b/rpg-docs/client/views/layout/layout.css index 98ffba11..735a9bd5 100644 --- a/rpg-docs/client/views/layout/layout.css +++ b/rpg-docs/client/views/layout/layout.css @@ -15,3 +15,11 @@ #navPanel { padding: 16px; } + +.layout > core-header-panel { + height: 100%; +} + +.layout > core-animated-pages { + height: 100%; +} diff --git a/rpg-docs/client/views/layout/layout.html b/rpg-docs/client/views/layout/layout.html index a6e40935..15e32fd7 100644 --- a/rpg-docs/client/views/layout/layout.html +++ b/rpg-docs/client/views/layout/layout.html @@ -1,5 +1,5 @@ \ No newline at end of file + diff --git a/rpg-docs/private/changeLogs/changeLogs.js b/rpg-docs/private/changeLogs/changeLogs.js index 3df6a438..4f615139 100644 --- a/rpg-docs/private/changeLogs/changeLogs.js +++ b/rpg-docs/private/changeLogs/changeLogs.js @@ -115,7 +115,7 @@ ChangeLogs.insert({ "Added encumbrance effects that automatically apply when carrying too much load", "Added a bunch of UI elements to make your character's current load clear", "Floating button menus now close as expected when you click a sub-button", - "Base values in attribute summaries no longer look like added values" + "Base values in attribute summaries no longer look like added values", ], }); @@ -276,8 +276,6 @@ ChangeLogs.insert({ ], }); - - ChangeLogs.insert({ version: "0.8.0", changes: [ @@ -294,3 +292,11 @@ ChangeLogs.insert({ "Added extra indexes to the database to improve performance", ], }); + +ChangeLogs.insert({ + version: "0.9.1", + changes: [ + "Fixed rendering issues in Chrome 49+", + "Made character names in the side-bar into regular links", + ], +});