Skip to content

Instantly share code, notes, and snippets.

@NeoBlack
Created June 17, 2015 14:15
Show Gist options
  • Save NeoBlack/b793b0d919f8a1763e08 to your computer and use it in GitHub Desktop.
Save NeoBlack/b793b0d919f8a1763e08 to your computer and use it in GitHub Desktop.
Tampermonkey script for forger.typo3.org
// ==UserScript==
// @name Forger Remove Animated Process Bar
// @namespace http://naegler.hamburg/
// @version 0.1
// @description remove the animation from WIP statusbar part
// @author You
// @match http*://forger.typo3.org/sprint?boardId=*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js
// @grant none
// ==/UserScript==
$(document).ready(function() {
$('.progress .progress-bar-striped').removeClass('active progress-bar-striped');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment