Created
July 1, 2016 13:44
-
-
Save muhqu/698a2953748fb9ae5d54a3b82ae582d5 to your computer and use it in GitHub Desktop.
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
<style type="text/css"> | |
body { | |
margin: 0; padding: 1px 2px; | |
white-space: nowrap; | |
width: 90px; | |
} | |
</style> | |
</head> | |
<body> | |
<img id="status" src="https://travis-ci.org/matryer/bitbar.svg?branch=master"> | |
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script> | |
<script> | |
// BitBar.showWebInspector(); | |
jQuery(function($){ | |
$('#status').click(function () { | |
BitBar.resetMenu(); | |
BitBar.addMenuItem({title:"travis-ci.org: matryer/bitbar",href:"https://travis-ci.org/matryer/bitbar"}); | |
BitBar.showMenu(); | |
}); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment