I have the following code:
var examples = {
'style': {
create: function (div, ref) {
var codeMirror = CodeMirror(div, {
lineNumbers: true,
mode: 'css'
});
this.firepad = Firepad.fromCodeMirror(ref, codeMirror);
var self = this;
this.firepad.on('ready', function () {
if (self.firepad.isHistoryEmpty()) {
self.firepad.setText('.red {color: red;}');
}
});
},
dispose: function () {
this.firepad.dispose();
}
}
};
Now usually I would go codeMirror.getValue()
to get the contents of the CodeMirror instance unfortuantely I have no idea how to access a variable in a function in a object (have I even said that right?)
I tried examples.style.getValue()
but that of course returns an error.
Any ideas?
Well, you can't. Local variables cannot be accessed outside the function.
You'd have to use the Firepad API to get the value:
Alternatively you can assign the CodeMirror instance to a property and use
getValue
.However you probably want to add another method to the object, for convenience: