Skip to content

Instantly share code, notes, and snippets.

@lifeinafolder
Created December 5, 2012 13:10
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lifeinafolder/4215388 to your computer and use it in GitHub Desktop.
Save lifeinafolder/4215388 to your computer and use it in GitHub Desktop.
Ember-Redactor.js
RedactorView = Ember.View.extend({
templateName: 'redactor',
didInsertElement: function () {
require('editor/vendor/redactor/redactor');
// If 'css' is not injected yet, inject it.
if (!Utils.hasCss('css/redactor.css')) {
$('head').append('<link rel="stylesheet" href="css/redactor.css" type="text/css" />');
}
this.$('#redactor').redactor();
}
});
<div class="redactor-wrapper">
<textarea id="redactor" name="content">
</div>
@kroofy
Copy link

kroofy commented Feb 4, 2013

Have you successfully implemented a Redactor field in Ember with valueBinding? I find a bit complicated since Redactor inserts a new element and I have to find a way to add bindings to that.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment