Fixes JSHint error on PageDown. Updated for Uniform Access Principle.

This commit is contained in:
Robin Ward 2013-03-11 12:30:13 -04:00
parent 88bb25f2f6
commit 3b7ac014de
1 changed files with 5 additions and 6 deletions

View File

@ -32,15 +32,14 @@ Discourse.PagedownEditor = Ember.ContainerView.extend({
didInsertElement: function() {
var $wmdInput = $('#wmd-input');
$wmdInput.data('init', true);
this.editor = Discourse.Markdown.createEditor();
return this.editor.run();
this.set('editor', Discourse.Markdown.createEditor());
return this.get('editor').run();
},
observeValue: (function() {
var _this = this;
Ember.run.next(null, function() {
_this.editor && _this.editor.refreshPreview();
});
var editor = this.get('editor');
if (!editor) return;
Ember.run.next(null, function() { editor.refreshPreview(); });
}).observes('value')
});