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
| gulp = require 'gulp' | |
| $ = require('gulp-load-plugins')({ | |
| pattern: ['gulp-*', 'run-sequence'] | |
| }); | |
| sources = | |
| sass: 'docroot/sites/all/themes/nylottery/assets/scss/**/*.scss' | |
| destinations = |
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
| <style> | |
| div { | |
| float: left; | |
| width: 12.5%; | |
| padding: 40px 0; | |
| line-height: 30px; | |
| text-align: center; | |
| color: #fff; | |
| font-family: Verdana; | |
| } |
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
| const Scene = require('Scene'); | |
| const Persistence = require('Persistence'); | |
| const Diagnostics = require('Diagnostics'); | |
| const Patches = require('Patches'); | |
| // Esperamos por todos os itens que iremos usar do SparkAR ficarem disponíveis | |
| Promise.all([ | |
| Patches.outputs.getPulse('wasTapped'), | |
| Scene.root.findFirst('2dText0'), | |
| ]).then(results => { |
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
| <?php | |
| namespace App\Console\Commands; | |
| use Illuminate\Console\Command; | |
| use Spatie\MediaLibrary\Models\Media; | |
| class MigrateFiles extends Command | |
| { | |
| protected $signature = 'migrate-files'; |
OlderNewer