Browse Source

fix bug with events

pull/1/head
wes 8 years ago
parent
commit
76f071856f
  1. 2
      src/scripts/app.tag
  2. 1
      src/styles/riotblog.scss

2
src/scripts/app.tag

@ -130,8 +130,8 @@ to(name) {
/* This may or may not be used as an event handler */ /* This may or may not be used as an event handler */
if (e !== undefined) { if (e !== undefined) {
e.preventDefault(); e.preventDefault();
this.menuOff(e);
} }
this.menuOff(e);
this.route(name); this.route(name);
return; return;
}).bind(this); }).bind(this);

1
src/styles/riotblog.scss

@ -60,6 +60,7 @@ a {
.post-text, .title, .post, .postnav { .post-text, .title, .post, .postnav {
text-align: center; text-align: center;
text-transform: capitalize;
border: 1px; border: 1px;
} }

Loading…
Cancel
Save