We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 712fbac commit 429f761Copy full SHA for 429f761
Griddly/Scripts/editly.js
@@ -66,6 +66,7 @@
66
this.$element.find("tbody td").each(function () {
67
if (self.options.editors[this.cellIndex] != null) {
68
$(this).removeAttr("tabindex");
69
+ $(this).removeClass("editly-editable");
70
}
71
else
72
$(this).css("cursor", "");
@@ -292,8 +293,10 @@
292
293
294
295
- if (!this.tabIndex || this.tabIndex < 0)
296
+ if (!this.tabIndex || this.tabIndex < 0) {
297
this.tabIndex = 0;
298
+ $(this).addClass("editly-editable");
299
+ }
300
301
302
$(this).css("cursor", "default");
0 commit comments