change some lambdas to functions
This commit is contained in:
parent
d4d791f14e
commit
905c984148
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
window.loadHistory = (() => {
|
window.loadHistory = (function() {
|
||||||
// Date of last seen item.
|
// Date of last seen item.
|
||||||
let lastItemDate = null;
|
let lastItemDate = null;
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
(() => {
|
(function() {
|
||||||
// FIXME:qtwebengine integrate this with other window._qutebrowser code?
|
// FIXME:qtwebengine integrate this with other window._qutebrowser code?
|
||||||
function isElementInViewport(node) { // eslint-disable-line complexity
|
function isElementInViewport(node) { // eslint-disable-line complexity
|
||||||
let i;
|
let i;
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
window._qutebrowser.scroll = (() => {
|
window._qutebrowser.scroll = (function() {
|
||||||
const funcs = {};
|
const funcs = {};
|
||||||
|
|
||||||
funcs.to_perc = (x, y) => {
|
funcs.to_perc = (x, y) => {
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
window._qutebrowser.webelem = (() => {
|
window._qutebrowser.webelem = (function() {
|
||||||
const funcs = {};
|
const funcs = {};
|
||||||
const elements = [];
|
const elements = [];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user