conquerthechaos / Move Infusionsoft Campaign Publish/Ready/Draft Button To The Left

// ==UserScript==
// @name         Move Infusionsoft Campaign Publish/Ready/Draft Button To The Left
// @namespace    https://conquerthechaos.org/
// @version      0.3
// @description  Reduce RSI and wasted time by moving the Publish/Ready/Draft Button in the Infusionsoft Campaign Builder to the left of the screen
// @author       Geover D. Zamora, Conquer The Chaos Ltd
// @match        https://*.infusionsoft.com/app/funnel/funnelEditor?funnelId=*
// @grant        none
// @license MIT
// @copyright 2018, conquerthechaos (https://openuserjs.org/users/conquerthechaos)
// ==/UserScript==

// ==OpenUserJS==
// @author conquerthechaos
// ==/OpenUserJS==

(function () {
  'use strict';
  var publishBtn = jQuery("#publish_funnel_div");
  var readyhBtn = jQuery("#readyToggleContainer");
  publishBtn.insertAfter('#titleBreadcrumbs');
  readyhBtn.insertAfter('#titleBreadcrumbs');
  readyhBtn.css('margin-left', 10);
  publishBtn.css('margin-left', 10);
})();