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
| > git rev-list -n 1 HEAD -- e2e/README.md | |
| > 8e3b56b0e69db098ee7afccf2de4f372e28cd98a | |
| > git checkout 8e3b56b0e69db098ee7afccf2de4f372e28cd98a^ -- e2e/README.md |
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
| /** | |
| * An extension to the standard sencha carousel but fires the tap event the carousel is passed as the argument in the event. | |
| */ | |
| Ext.define('NameSpace.view.helper.TapCarousel', { | |
| extend: 'Ext.carousel.Carousel', | |
| xtype: 'tapcarousel', | |
| config: { |
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
| #!/usr/bin/node | |
| var colors = require('colors'); | |
| process.on('message', function(m) { | |
| console.log('Hello Mummy and Daddy, I love you!'.cyan); | |
| }); |