Skip to content

Instantly share code, notes, and snippets.

View dstefanox's full-sized avatar

Dejan Stefanovic dstefanox

  • Novi Sad, Serbia
View GitHub Profile
/**
* Marlin 3D Printer Firmware
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
*
* Based on Sprinter and grbl.
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
@dstefanox
dstefanox / dnd-bug.js
Created April 12, 2016 11:27
Selenium webdriver problem with drag and drop - files necessary to reproduce
var webdriver = require('selenium-webdriver'),
By = webdriver.By,
until = webdriver.until;
describe('Seleniun dnd testing', function() {
this.timeout(10000);
var driver;
var ENDPOINT = "http://localhost/dnd-test.html";
beforeEach(function() {