hmmm jshint should warn about this....

This commit is contained in:
Sam 2013-03-19 04:13:23 -07:00
parent 66b26f6988
commit 851cd2637c
1 changed files with 3 additions and 3 deletions

View File

@ -68,7 +68,7 @@ Discourse.ComposerView = Discourse.View.extend({
if (this.get('controller.newUserEducationVisible')) {
$panel.slideDown('fast');
} else {
$panel.slideUp('fast')
$panel.slideUp('fast');
}
}.observes('controller.newUserEducationVisible'),
@ -77,7 +77,7 @@ Discourse.ComposerView = Discourse.View.extend({
if (this.get('controller.similarVisible')) {
$panel.slideDown('fast');
} else {
$panel.slideUp('fast')
$panel.slideUp('fast');
}
}.observes('controller.similarVisible'),
@ -145,7 +145,7 @@ Discourse.ComposerView = Discourse.View.extend({
// If we are editing a post, we'll refresh its contents once. This is a feature that
// allows a user to refresh its contents once.
if (post && post.blank('refreshedPost')) {
refresh = true
refresh = true;
post.set('refreshedPost', true);
}