Skip to content

Commit

Permalink
Upgrade base to 2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Kotov committed Mar 4, 2015
1 parent d8c4838 commit 8feeeea
Show file tree
Hide file tree
Showing 14 changed files with 178 additions and 216 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Linked by Air customization of the Harvest Chrome extension

Currently based on version 2.04 in the
Currently based on version 2.1.2 in the
[Chrome Store](https://chrome.google.com/webstore/detail/harvest-time-tracker/fbpiglieekigmkeebmeohkelfpjjlaia)

## Additional features compared to the official version:
Expand Down
12 changes: 3 additions & 9 deletions linkedbyair-harvest-chrome-extension/css/trello.css
Original file line number Diff line number Diff line change
@@ -1,25 +1,19 @@
/* line 3, ../sass/trello.sass */
.js-add-trello-timer.running {
background: #2887bd;
background: -webkit-linear-gradient(top, #2887bd, #1f6993);
background: -moz-linear-gradient(top, #2887bd, #1f6993);
background: -o-linear-gradient(top, #2887bd, #1f6993);
background: linear-gradient(to bottom, #2887bd, #1f6993);
color: white;
}
color: #fff; }

/* line 11, ../sass/trello.sass */
.trello-timer-icon {
background-position: 4px -83px;
background-repeat: no-repeat;
display: inline-block;
height: 18px;
margin: 0 0 -3px 0;
position: relative;
width: 18px;
}
width: 18px; }

/* line 20, ../sass/trello.sass */
.js-add-trello-timer:hover .trello-timer-icon, .trello-timer-icon.running {
background-position: 4px -122px;
}
background-position: 4px -122px; }
Binary file modified linkedbyair-harvest-chrome-extension/images/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 13 additions & 19 deletions linkedbyair-harvest-chrome-extension/js/background.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions linkedbyair-harvest-chrome-extension/js/background/config.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
// Generated by CoffeeScript 1.6.3
(function() {
(function() {

/*
To toggle which environment is used, edit local storage for the extension
and set the "environment" key.
To open Dev Tools for the extension, go to chrome://extensions (enable
developer mode if not already enabled) and you'll see a link to launch dev
tools.
*/

*/
var badge, environment, environments, lastCharacter;
environments = {
production: {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// Generated by CoffeeScript 1.6.3
(function() {
(function() {
var _base;
Expand Down
34 changes: 0 additions & 34 deletions linkedbyair-harvest-chrome-extension/js/background/subdomain.js

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions linkedbyair-harvest-chrome-extension/js/iframe.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
// Generated by CoffeeScript 1.6.3
(function() {
(function() {
var canBeClosed, nextTick, setRunningTimerIcon, shouldClose,
_this = this;
var canBeClosed, nextTick, setRunningTimerIcon, shouldClose;
canBeClosed = true;
shouldClose = false;
nextTick = function(callback) {
return window.setTimeout(callback, 0);
};
document.addEventListener("DOMContentLoaded", nextTick(function() {
var iframe;
iframe = document.querySelector("iframe");
return iframe.src = "" + _this.config.url + "/platform/timer?service=chrome.google.com&format=platform&external_item_id=1&external_group_id=1&external_group_name=undefined";
}));
document.addEventListener("DOMContentLoaded", nextTick((function(_this) {
return function() {
var iframe;
iframe = document.querySelector("iframe");
return iframe.src = "" + _this.config.url + "/platform/timer?service=chrome.google.com&format=platform&external_item_id=1&external_group_id=1&external_group_name=undefined";
};
})(this)));
window.addEventListener("message", function(e) {
var height, iframe, isRunning, matches, message;
iframe = document.querySelector("iframe");
Expand Down
18 changes: 9 additions & 9 deletions linkedbyair-harvest-chrome-extension/js/profiles/basecamp.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// Generated by CoffeeScript 1.6.3
(function() {
(function() {
return window.addEventListener("message", function(evt) {
Expand Down
Loading

0 comments on commit 8feeeea

Please sign in to comment.