Last active
May 5, 2017 13:41
-
-
Save ggreensolu/a25a59701b66982392b9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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