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
(async function() { | |
if (canvas.tokens.controlled.length > 1) { | |
ui.notifications.error("Please select just one token"); | |
return; | |
} else if (canvas.tokens.controlled.length !== 0) { | |
let target = canvas.tokens.controlled[0]; | |
console.log(target.emitsLight) | |
if (target.emitsLight) { | |
target.update({ "dimLight": 0, "brightLight": 0}) | |
} else { |
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
# OS generated files # | |
###################### | |
.DS_Store | |
.DS_Store? | |
._* | |
.Spotlight-V100 | |
.Trashes | |
ehthumbs.db | |
Thumbs.db |
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
(function($){ | |
$.fn.scrollFixed = function(params){ | |
params = $.extend( {appearAfterDiv: 0, hideBeforeDiv: 0}, params); | |
var element = $(this); | |
if(params.appearAfterDiv) | |
var distanceTop = element.offset().top + $(params.appearAfterDiv).outerHeight(true) + element.outerHeight(true); | |
else | |
var distanceTop = element.offset().top; | |
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
var gulp = require('gulp'), | |
sass = require('gulp-sass'), | |
cssnano = require('gulp-cssnano'), | |
sourcemaps = require('gulp-sourcemaps'), | |
rename = require("gulp-rename"), | |
imagemin = require("gulp-imagemin"), | |
autoprefixer = require('gulp-autoprefixer'), | |
php = require('gulp-connect-php'), | |
browserSync = require('browser-sync').create(), | |
watch = require('gulp-watch'); |
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
# BEGIN GZIP | |
<IfModule mod_filter.c> | |
AddOutputFilterByType DEFLATE "application/atom+xml" \ | |
"application/javascript" \ | |
"application/json" \ | |
"application/ld+json" \ | |
"application/manifest+json" \ | |
"application/rdf+xml" \ | |
"application/rss+xml" \ | |
"application/schema+json" \ |