Skip to content

Commit

Permalink
fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dylang committed Mar 15, 2016
1 parent 67670e8 commit e5f8ba3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "jira-improved",
"description": "Chrome plugin for improving Jira Kanban and Agile views.",
"version": "2.0.4",
"version": "2.0.6",
"scripts": {
"start": "gulp",
"test": "gulp test",
Expand Down
2 changes: 1 addition & 1 deletion src/js/content/ui/filter.js
Expand Up @@ -13,7 +13,7 @@ var sizzleCustomizations = require('../util/sizzle-customizations');
var $filter = $('<input>').addClass('filter').attr('placeholder', 'Filter');


function filter(force) {
function filter() {

// need to re-find all the issues in case some filter was changed that altered what tickets are viewable
//.ghx-swimlane.ghx-closed .ghx-columns .ghx-issue,
Expand Down
2 changes: 1 addition & 1 deletion src/js/content/util/api.js
@@ -1,6 +1,6 @@
'use strict';

const got = require('got');
//const got = require('got');

var API_PREFIX = window.location.pathname.replace('/secure/RapidBoard.jspa', '');
var API_URL = API_PREFIX + '/rest/api/2/';
Expand Down
5 changes: 2 additions & 3 deletions src/manifest.json
@@ -1,6 +1,6 @@
{
"name": "__MSG_appName__",
"version": "8802.0.4",
"version": "2.0.6",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons": {
Expand All @@ -10,8 +10,7 @@
"default_locale": "en",
"background": {
"scripts": [
"js/background.js",
"js/live-reload.js"
"js/background.js"
]
},
"page_action": {
Expand Down

0 comments on commit e5f8ba3

Please sign in to comment.