Created
June 17, 2015 14:15
-
-
Save NeoBlack/b793b0d919f8a1763e08 to your computer and use it in GitHub Desktop.
Tampermonkey script for forger.typo3.org
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 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