Skip to content

Commit a365b02

Browse files
committed
fix 3 DeepScan issues #842
1 parent d3649bc commit a365b02

File tree

3 files changed

+0
-5
lines changed

3 files changed

+0
-5
lines changed

__tests__/terminal.spec.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -420,10 +420,8 @@ function timer(callback, timeout) {
420420
});
421421
}
422422

423-
424423
var support_animations = (function() {
425424
var animation = false,
426-
animationstring = 'animation',
427425
keyframeprefix = '',
428426
domPrefixes = 'Webkit Moz O ms Khtml'.split(' '),
429427
pfx = '',
@@ -436,7 +434,6 @@ var support_animations = (function() {
436434
var name = domPrefixes[i] + 'AnimationName';
437435
if (typeof elm.style[name] !== 'undefined') {
438436
pfx = domPrefixes[i];
439-
animationstring = pfx + 'Animation';
440437
keyframeprefix = '-' + pfx.toLowerCase() + '-';
441438
animation = true;
442439
break;

examples/dialog.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@
6161
};
6262
var settings = $.extend({}, $.dialog.defaults, options || {});
6363
var cols = settings.cols > 20 ? settings.cols : 20;
64-
var rows = settings.rows > 8 ? settings.rows : 8;
6564
function line(container, left, right, options) {
6665
var settings = $.extend({
6766
bottom: false,

scripts/contributors.mjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/usr/bin/env node
22

3-
import https from 'https';
43
import path from 'path';
54
import fs from 'fs';
65
import fetch from 'node-fetch';

0 commit comments

Comments
 (0)