Disables devTest to enable production mode and allow connectivity to vertix.io
// ==UserScript==
// @name Force Vertix to run in production mode
// @version 0.1
// @author dannytech
// @match http://vertix.io/
// @description Disables devTest to enable production mode and allow connectivity to vertix.io
// @grant none
// @namespace https://greasyfork.org/users/65245
// ==/UserScript==
(function() {
'use strict';
devTest = false;
})();