- Microsoft Xbox 360 black
- Sony PlayStation 3 red
- Sony PlayStation 2 black
- Sony PSOne (not original Playstation)
- Nintendo Wii white
- Nintendo GameCube purple
- Nintendo 64
- Nintendo Entertainment System
- Sega Megadrive (x2)
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
| { | |
| "id": 1, | |
| "title": "Level 1", | |
| "waves": 3, | |
| "ducks": 2, | |
| "pointsPerDuck": 100, | |
| "speed": 5, | |
| "bullets": 3, | |
| "time": 13 | |
| }, |
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
| // Webpack autoprefixer was removing prefixes for IE10. Possibly due to incorrect autoprefixer config. | |
| // We set remove: false in options to avoid this. | |
| // We may need to look into default settings for our projects using webpack. | |
| mix.sass('resources/sass/app.sass', 'public/css') | |
| .options({ | |
| autoprefixer: { | |
| options: { | |
| remove: false | |
| } |
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
| <VirtualHost *:443> | |
| ServerName takeda-vipidia-isell.staging.openhealthdigital.co.uk | |
| ServerAdmin digital@openhealth.co.uk | |
| SSLEngine on | |
| SSLCertificateFile /etc/ssl/certs/openhealthdigital.crt | |
| SSLCertificateKeyFile /etc/ssl/private/openhealthdigital.key | |
| DocumentRoot /var/www/takeda/takeda-vipidia-isell/html | |
| <Directory /var/www/takeda/takeda-vipidia-isell/html> |
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
| $('.scrollmagic-example-triggerhook-duration').each(function () { | |
| new ScrollMagic.Scene({ | |
| triggerElement: this, | |
| triggerHook: 0.9, | |
| duration: '90%' | |
| }) | |
| .setClassToggle(this, 'fade-in') | |
| .addTo(controller); | |
| }); |
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
| $('.scrollmagic-example-triggerhook').each(function () { | |
| new ScrollMagic.Scene({ | |
| triggerElement: this, | |
| triggerHook: 0.9 | |
| }) | |
| .setClassToggle(this, 'fade-in') | |
| .addTo(controller); | |
| }); |
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
| $('.scrollmagic-example-duration').each(function () { | |
| new ScrollMagic.Scene({ | |
| triggerElement: this, | |
| duration: 150 | |
| }) | |
| .setClassToggle(this, 'fade-in') | |
| .addTo(controller); | |
| }); |
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
| // Init ScrollMagic | |
| var controller = new ScrollMagic.Controller(); | |
| $('.scrollmagic-example').each(function () { | |
| new ScrollMagic.Scene({ | |
| triggerElement: this | |
| }) | |
| .setClassToggle(this, 'fade-in') | |
| .addIndicators({ | |
| name: 'fade in kitten', |
