Skip to content

Commit

Permalink
possible js error from element js in inline edit, and selection fix n…
Browse files Browse the repository at this point in the history
…ow applied cross browser
  • Loading branch information
pollen8 committed Apr 25, 2013
1 parent dee6137 commit 09700a5
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
2 changes: 1 addition & 1 deletion media/com_fabrik/js/element-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion media/com_fabrik/js/element.js
Expand Up @@ -98,7 +98,9 @@ var FbElement = new Class({
}.bind(this));
} else {
Array.from(evnts).each(function (e) {
this.element.fireEvent(e);
if (this.element) {
this.element.fireEvent(e);
}
}.bind(this));
}
},
Expand Down

0 comments on commit 09700a5

Please sign in to comment.