This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| enyo.ready(function() { | |
| enyo.kind({ | |
| name: 'ControlSample', | |
| components: [ | |
| { kind: 'Button', content: 'Click', ontap: 'tapped' }, | |
| { tag: 'br'}, | |
| { kind: 'Checkbox', checked: true, onchange: 'changed' }, | |
| { tag: 'br'}, | |
| { kind: 'Input', placeholder: 'Enter something', onchange: 'changed' }, | |
| { tag: 'br'}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| enyo.ready(function() { | |
| enyo.kind({ | |
| name: 'DynamicSample', | |
| components: [ | |
| { kind: 'Button', content: 'Click', ontap: 'tapped' } | |
| ], | |
| tapped: function(inSender, inEvent) { | |
| this.createComponent({ content: 'A new component' }); | |
| this.render(); | |
| return true; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| enyo.ready(function() { | |
| enyo.kind({ | |
| name: 'Heartbeat', | |
| events: { | |
| onBeat: '' | |
| }, | |
| create: function() { | |
| this.inherited(arguments); | |
| this.timer = window.setInterval(enyo.bind(this, 'beat'), 1000); | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| enyo.ready(function() { | |
| enyo.kind({ | |
| name: 'InstanceCounter', | |
| constructor: function() { | |
| InstanceCounter.count += 1; | |
| this.inherited(arguments); | |
| }, | |
| statics: { | |
| count: 0, | |
| currentCount: function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| enyo.ready(function() { | |
| enyo.kind({ | |
| name: 'Signaller', | |
| components: [ | |
| { kind: 'Button', content: 'Click', ontap: 'sendit' } | |
| ], | |
| sendit: function() { | |
| enyo.Signals.send('onButtonSignal'); | |
| } | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| enyo.ready(function() { | |
| enyo.kind({ | |
| name: 'Eventer', | |
| handlers: { ontap: 'myTap' }, | |
| events: { onMyEvent: '' }, | |
| content: 'Click for the answer', | |
| myTap: function() { | |
| this.doMyEvent({ answer: 42 }); | |
| } | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| enyo.ready(function() { | |
| enyo.kind({ | |
| name: 'Light', | |
| color: 'yellow', | |
| style: 'width: 50px; height: 50px; border-radius: 50%;', | |
| create: function() { | |
| this.inherited(arguments); | |
| this.colorChanged(); | |
| }, | |
| colorChanged: function(oldValue) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| enyo.ready(function() { | |
| enyo.kind({ | |
| name: 'Light', | |
| color: 'yellow', | |
| style: 'width: 50px; height: 50px; border-radius: 50%;', | |
| create: function() { | |
| this.inherited(arguments); | |
| this.colorChanged(); | |
| }, | |
| colorChanged: function(oldValue) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| enyo.ready(function() { | |
| enyo.kind({ | |
| name: 'Light', | |
| color: 'yellow', | |
| style: 'width: 50px; height: 50px; border-radius: 50%;', | |
| create: function() { | |
| this.inherited(arguments); | |
| this.colorChanged(); | |
| }, | |
| colorChanged: function(oldValue) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| enyo.ready(function() { | |
| enyo.kind({ | |
| name: 'Light', | |
| color: 'yellow', | |
| style: 'width: 50px; height: 50px; border-radius: 50%;', | |
| create: function() { | |
| this.inherited(arguments); | |
| this.colorChanged(); | |
| }, | |
| colorChanged: function(oldValue) { |