Skip to content

Commit

Permalink
Merge pull request #85 from gatewayapps/bug/84-pr-test
Browse files Browse the repository at this point in the history
typo fixes, bump version
  • Loading branch information
mcnewbk authored Jun 20, 2017
2 parents b1b522f + 9fed0da commit 5305fbb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ function initializeExtension() {
// if the page is not a pull request page(view or create)
// and the page is not a new issue page
// and there is no Kamino button in the DOM, proceed
if (urlObj.url.indexOf(url.organization + '/' + url.currentRepo + '/compare/') < 0 &&
urlObj.url.indexOf(url.organization + '/' + url.currentRepo + '/pull/') < 0 &&
urlObj.url.indexOf(url.organization + '/' + url.currentRepo + '/issues/new') < 0 &&
if (urlObj.url.indexOf(urlObj.organization + '/' + urlObj.currentRepo + '/compare/') < 0 &&
urlObj.url.indexOf(urlObj.organization + '/' + urlObj.currentRepo + '/pull/') < 0 &&
urlObj.url.indexOf(urlObj.organization + '/' + urlObj.currentRepo + '/issues/new') < 0 &&
$('.kaminoButton').length === 0) {

// look for any applied issue filters
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"webNavigation",
"*://github.com/*"
],
"version": "2.2",
"version": "2.3",
"web_accessible_resources":[
"icons/*.png",
"bootstrap/js/bootstrap.min.js",
Expand Down

0 comments on commit 5305fbb

Please sign in to comment.