Skip to content
This repository has been archived by the owner on Oct 14, 2021. It is now read-only.

Commit

Permalink
Merge pull request #3 from giltotherescue/master
Browse files Browse the repository at this point in the history
Allow 'pull' as a valid action
  • Loading branch information
danielribeiro committed May 10, 2012
2 parents 0f3c0a2 + 45c12fb commit 137cab4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/header.js
@@ -1,5 +1,5 @@
$(function() {
var action = window.location.href.split("/")[5];
if (action != 'commit' && action != 'pulls') {
if (action != 'commit' && action != 'pulls' && action != 'pull') {
return;
}

0 comments on commit 137cab4

Please sign in to comment.