Skip to content

Commit b894443

Browse files
Vasil Raevtsvetomir
authored andcommitted
fix(editable): revert boolean editor to avoid breaking change
1 parent 7510991 commit b894443

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/kendo.editable.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,7 @@ var __meta__ = { // jshint ignore:line
128128
},
129129
"boolean": function(container, options) {
130130
var attr = createAttributes(options);
131-
$('<input class="k-checkbox" type="checkbox" />').attr(attr).appendTo(container);
132-
$('<label class="k-checkbox-label">&#8203;</label>').appendTo(container);
131+
$('<input type="checkbox" />').attr(attr).appendTo(container);
133132
},
134133
"values": function(container, options) {
135134
var attr = createAttributes(options);

0 commit comments

Comments
 (0)