Skip to content

Commit

Permalink
Merge pull request #1264 from harleyttd/1-0-stable
Browse files Browse the repository at this point in the history
fix js syntax error in jquery.refinery.wymeditor.js (port fix from #1263)
  • Loading branch information
parndt committed Jan 29, 2012
2 parents d1e614f + bb6effc commit 882f95f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -4475,7 +4475,7 @@ WYMeditor.WymClassExplorer.prototype._exec = function(cmd,param) {

WYMeditor.WymClassExplorer.prototype.selected = function() {
var caretPos = this._iframe.contentWindow.document.caretPos;
if(caretPos != null && caretPos.parentElement != undefined)
if(caretPos != null && caretPos.parentElement != undefined) {
return(caretPos.parentElement());
}
};
Expand Down

0 comments on commit 882f95f

Please sign in to comment.