+
diff --git a/rpg-docs/client/views/characterList/characterSideList.js b/rpg-docs/client/views/characterList/characterSideList.js
index a0a2220c..915bf87a 100644
--- a/rpg-docs/client/views/characterList/characterSideList.js
+++ b/rpg-docs/client/views/characterList/characterSideList.js
@@ -18,7 +18,7 @@ Template.characterSideList.helpers({
sort: {name: 1},
}
);
- }
+ },
});
Template.characterSideList.events({
diff --git a/rpg-docs/client/views/layout/layout.html b/rpg-docs/client/views/layout/layout.html
index 3b3b8e0d..1ca08b88 100644
--- a/rpg-docs/client/views/layout/layout.html
+++ b/rpg-docs/client/views/layout/layout.html
@@ -4,38 +4,49 @@
{{#if currentUser}}
-
{{profileLink}}
-
+
{{else}}
Sign in
{{/if}}
-
- {{> yield}}
-
+ {{> yield}}
{{> dialogStack}}
diff --git a/rpg-docs/client/views/layout/layout.js b/rpg-docs/client/views/layout/layout.js
index 69edbf8e..e2852bd5 100644
--- a/rpg-docs/client/views/layout/layout.js
+++ b/rpg-docs/client/views/layout/layout.js
@@ -29,15 +29,10 @@ const closeDrawer = function(instance){
}
Template.layout.events({
- "tap #homeNav": function(event, instance){
- Router.go("/");
+ "click app-drawer a": function(event, instance){
closeDrawer(instance);
},
- "tap #profileLink": function(event, instance){
- Router.go("profile");
- closeDrawer(instance);
- },
- "tap #feedback": function(event, instance) {
+ "click #feedback": function(event, instance) {
pushDialogStack({
template: "feedback",
element: event.currentTarget,
@@ -48,16 +43,8 @@ Template.layout.events({
text: e && e.details || "Feedback submitted"
});
});
- }
+ },
});
closeDrawer(instance);
},
- "tap #changeLog": function(event, instance) {
- Router.go("changeLog");
- closeDrawer(instance);
- },
- "tap #guide": function(event, instance) {
- Router.go("guide");
- closeDrawer(instance);
- },
});
diff --git a/rpg-docs/client/views/layout/polymerImports.html b/rpg-docs/client/views/layout/polymerImports.html
index 4d3e71b2..b751207c 100644
--- a/rpg-docs/client/views/layout/polymerImports.html
+++ b/rpg-docs/client/views/layout/polymerImports.html
@@ -2,8 +2,8 @@
@@ -22,6 +22,7 @@
+
@@ -29,6 +30,7 @@
+
@@ -36,6 +38,7 @@
+
diff --git a/rpg-docs/public/custom_components/app-theme.html b/rpg-docs/public/custom_components/app-theme.html
index f9c0b0f1..401c579c 100644
--- a/rpg-docs/public/custom_components/app-theme.html
+++ b/rpg-docs/public/custom_components/app-theme.html
@@ -3,5 +3,13 @@
diff --git a/rpg-docs/server/publications/characterList.js b/rpg-docs/server/publications/characterList.js
index 5a558fee..b8c24b83 100644
--- a/rpg-docs/server/publications/characterList.js
+++ b/rpg-docs/server/publications/characterList.js
@@ -22,6 +22,7 @@ Meteor.publish("characterList", function(){
writers:1,
owner: 1,
color: 1,
+ picture: 1,
}
}
);