Skip to content

Commit

Permalink
maps app: removed unnecessary code
Browse files Browse the repository at this point in the history
  • Loading branch information
frankiefu committed Apr 2, 2012
1 parent a18a35f commit 0f46c69
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions examples/Maps/source/LabeledItem.js
Expand Up @@ -9,7 +9,7 @@ enyo.kind({
components: [
{name: "icon", kind: "Image", classes: "labeled-item-icon"},
{name: "label", kind: "Control"},
{name: "input", classes: "label-item-input", ondragstart: "dragstart"}
{name: "input", classes: "label-item-input"}
],
defaultKind: "onyx.Checkbox",
create: function() {
Expand All @@ -29,8 +29,5 @@ enyo.kind({
},
valueChanged: function() {
this.$.input.setValue(this.value);
},
dragstart: function() {
return true;
}
});

0 comments on commit 0f46c69

Please sign in to comment.