Fix lint issues in view

This commit is contained in:
Nick O'Leary 2016-01-09 00:31:05 +00:00
parent f35dd34da9
commit 6b8ffb4c68
1 changed files with 6 additions and 5 deletions

View File

@ -465,6 +465,7 @@ RED.view = (function() {
} }
function canvasMouseMove() { function canvasMouseMove() {
var i;
mouse_position = d3.touches(this)[0]||d3.mouse(this); mouse_position = d3.touches(this)[0]||d3.mouse(this);
// Prevent touch scrolling... // Prevent touch scrolling...
//if (d3.touches(this)[0]) { //if (d3.touches(this)[0]) {
@ -527,7 +528,7 @@ RED.view = (function() {
} }
} }
var existingLinks = RED.nodes.filterLinks(filter); var existingLinks = RED.nodes.filterLinks(filter);
for (var i=0;i<existingLinks.length;i++) { for (i=0;i<existingLinks.length;i++) {
var link = existingLinks[i]; var link = existingLinks[i];
RED.nodes.removeLink(link); RED.nodes.removeLink(link);
links.push({ links.push({
@ -547,7 +548,7 @@ RED.view = (function() {
} }
} }
mousePos = mouse_position; mousePos = mouse_position;
for (var i=0;i<drag_lines.length;i++) { for (i=0;i<drag_lines.length;i++) {
var drag_line = drag_lines[i]; var drag_line = drag_lines[i];
var numOutputs = (drag_line.portType === 0)?(drag_line.node.outputs || 1):1; var numOutputs = (drag_line.portType === 0)?(drag_line.node.outputs || 1):1;
var sourcePort = drag_line.port; var sourcePort = drag_line.port;
@ -592,7 +593,6 @@ RED.view = (function() {
} else if (mouse_mode == RED.state.MOVING_ACTIVE || mouse_mode == RED.state.IMPORT_DRAGGING) { } else if (mouse_mode == RED.state.MOVING_ACTIVE || mouse_mode == RED.state.IMPORT_DRAGGING) {
mousePos = mouse_position; mousePos = mouse_position;
var node; var node;
var i;
var minX = 0; var minX = 0;
var minY = 0; var minY = 0;
for (var n = 0; n<moving_set.length; n++) { for (var n = 0; n<moving_set.length; n++) {
@ -637,9 +637,10 @@ RED.view = (function() {
} }
function canvasMouseUp() { function canvasMouseUp() {
var i;
if (mousedown_node && mouse_mode == RED.state.JOINING) { if (mousedown_node && mouse_mode == RED.state.JOINING) {
var removedLinks = []; var removedLinks = [];
for (var i=0;i<drag_lines.length;i++) { for (i=0;i<drag_lines.length;i++) {
if (drag_lines[i].link) { if (drag_lines[i].link) {
removedLinks.push(drag_lines[i].link) removedLinks.push(drag_lines[i].link)
} }
@ -704,7 +705,7 @@ RED.view = (function() {
} }
} }
if (mouse_mode == RED.state.MOVING || mouse_mode == RED.state.MOVING_ACTIVE) { if (mouse_mode == RED.state.MOVING || mouse_mode == RED.state.MOVING_ACTIVE) {
for (var i=0;i<moving_set.length;i++) { for (i=0;i<moving_set.length;i++) {
delete moving_set[i].ox; delete moving_set[i].ox;
delete moving_set[i].oy; delete moving_set[i].oy;
} }