Skip to content

Instantly share code, notes, and snippets.

@ggreen88
Forked from ggreensolu/bullhorn.user.js
Created May 5, 2017 13:41
Show Gist options
  • Save ggreen88/4afd7d822a3a0a1ba21558d4bf02df3c to your computer and use it in GitHub Desktop.
Save ggreen88/4afd7d822a3a0a1ba21558d4bf02df3c to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Bullhorn Hours Entry
// @namespace http://tampermonkey.net/
// @version 0.6
// @description Makes it so the hours entry box scrolls down with the dates. This way both date and entry are visable at same time.
// @author Garrett Green
// @match https://*.bbo.bullhornstaffing.com/employee/*
// @grant none
// @require http://code.jquery.com/jquery-latest.js// ==/UserScript==
/* jshint -W097 */
'use strict';
// Your code here...
$(document).ready(function() {
//console.log('In Timesheet');
var card = $('#timesheets .rightColumn.card').css('position', 'fixed').css('right', '286px').width(710);
//console.log(card);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment