Skip to content

Commit

Permalink
[FIXED JENKINS-6439] Fixed Timeline widget's default view off by one …
Browse files Browse the repository at this point in the history
…day.

Second part of the JENKINS-6439 fix.

Signed-off-by: Matthias Kraft <Matthias.Kraft@softwareag.com>
  • Loading branch information
makr authored and kohsuke committed Apr 2, 2011
1 parent 416d25c commit f5e29cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions changelog.html
Expand Up @@ -60,6 +60,9 @@
<!-- Record your changes in the trunk here. -->
<div id="trunk" style="display:none"><!--=TRUNK-BEGIN=-->
<ul class=image>
<li class=bug>
Default viewport of the Timeline widgets were off by one day.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6439">issue 6439</a>)
<li class=bug>
Label expression logic wasn't supporting a binary operator sequence like "a || b || c"
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8537">issue 8537</a>)
Expand Down
Expand Up @@ -70,7 +70,7 @@ THE SOFTWARE.
theme1.timeline_start = new Date(${it.firstBuild.timeInMillis-24*60*60*1000});
theme1.timeline_stop = new Date(${it.lastBuild.timeInMillis+24*60*60*1000});
var d = theme1.timeline_stop;
var d = new Date(${it.lastBuild.timeInMillis});
var bandInfos = [
// the bar that shows outline
Timeline.createBandInfo({
Expand Down

0 comments on commit f5e29cb

Please sign in to comment.