I hereby claim:
- I am lydell on github.
- I am lydell (https://keybase.io/lydell) on keybase.
- I have a public key whose fingerprint is C9F5 C6D9 0520 8814 3C8F 19AD DDEF 57C7 3914 C7EF
To claim this, I am signing this object:
| function draw(rect) { | |
| const div = document.createElement("div"); | |
| // Might be needed on crazy pages, but makes the console output for the div crazy large. | |
| // div.style.all = "unset"; | |
| div.style.position = "absolute"; | |
| div.style.zIndex = "2147483647"; | |
| // At least _try_ to scroll along. Won’t work for inner scroll. | |
| div.style.left = `${window.scrollX + rect.left}px`; | |
| div.style.top = `${window.scrollY + rect.top}px`; | |
| div.style.width = `${rect.width}px`; |
I hereby claim:
To claim this, I am signing this object:
| \documentclass[twoside]{article} | |
| \usepackage{fancyhdr} | |
| \usepackage{extramarks} | |
| \setlength{\headheight}{14pt} | |
| \fancypagestyle{ttlpage}{ | |
| \fancyhf{} | |
| \fancyhead[L]{First page head} |
| @font-face { | |
| src: url(if($bootstrap-sass-asset-helper, twbs-font-path('#{$icon-font-path}#{$icon-font-name}.eot'), '#{$icon-font-path}#{$icon-font-name}.eot')); | |
| } | |
| // Catchall baseclass | |
| .glyphicon {} | |
| // Individual icons | |
| .glyphicon-asterisk {} |
| @font-face { | |
| src: url(if($bootstrap-sass-asset-helper, twbs-font-path('#{$icon-font-path}#{$icon-font-name}.eot'), '#{$icon-font-path}#{$icon-font-name}.eot')); | |
| } | |
| // Catchall baseclass | |
| .glyphicon {} | |
| // Individual icons | |
| .glyphicon-asterisk {} |
| module.exports = { | |
| extends: [ | |
| "strict", | |
| "prettier", | |
| ], | |
| parserOptions: { | |
| ecmaVersion: 2016, | |
| }, | |
| plugins: ["prettier"], | |
| rules: { |
| "use strict"; | |
| function onError(error) { | |
| console.error(`Error: ${error}`); | |
| } | |
| function sendMessageToTabs(tabs) { | |
| for (let tab of tabs) { | |
| browser.tabs.sendMessage( | |
| tab.id, |
| module.exports = { | |
| 'plugins': ['flowtype', 'prettier'], | |
| "globals": { | |
| "window": true | |
| }, | |
| 'rules': { | |
| 'import/extensions': 'off', | |
| 'import/no-extraneous-dependencies': 'off', | |
| 'import/no-unresolved': 'off', |
| module.exports = { | |
| extends: 'stylelint-config-standard', | |
| } |
| module.exports = { | |
| extends: 'eslint-config-standard', | |
| } |