timout icon indicating copy to clipboard operation
timout copied to clipboard

list previous pomodoros

Open O-Jordan opened this issue 12 years ago • 2 comments

keep a running list of the pomodoros completed in a session

nice to have: list sessions with all completed or interrupted pomodoros

O-Jordan avatar Apr 15 '12 17:04 O-Jordan

I don't know how to formally submit a patch but here's what I came up with

diff --git a/war/js/timout.js b/war/js/timout.js index 9af43e1..f61c700 100644 --- a/war/js/timout.js +++ b/war/js/timout.js @@ -136,9 +136,11 @@ $(document).ready(function(){ for (_i = 0, _len = inputMessages.length; _i < _len; _i++) { inputMessage = inputMessages[_i]; if (inputMessage == name) {

  •           $('#' + inputMessage).show();
    
  •       } else {
    
  •           $('#' + inputMessage).hide();
    
  •    newNode = $('#' + inputMessage).clone(true);
    
  •    parentNode = $('#' + inputMessage).parent();
    
  •    newNode.appendTo(parentNode);
    
  •    newNode.show();
        }
    }
    
    }

O-Jordan avatar Apr 15 '12 17:04 O-Jordan

Thanks for patch.

And I add - show timeline statistics from stored history.

shamoh avatar Jun 01 '12 21:06 shamoh