1 rng.modules.sourceEditor = function(sandbox) {
\r
3 var view = $(sandbox.getTemplate('main')());
\r
6 $('textarea', view).on('keyup', function() {
\r
12 sandbox.publish('ready');
\r
14 getView: function() {
\r
17 setDocument: function(document) {
\r
18 $('textarea', view).val(document);
\r
21 getDocument: function() {
\r
22 return $('textarea', view).val();
\r
24 isDirty: function() {
\r
27 setDirty: function(dirty) {
\r