Skip to content

Commit

Permalink
Build for update body z-index.
Browse files Browse the repository at this point in the history
  • Loading branch information
hotoo committed Oct 30, 2014
1 parent 5e8c73c commit c9ebd3e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion template/assets/markline/0.6.0/markline-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ define("markline/0.6.0/markline-debug", ["jquery/2.1.1/jquery-debug"], function(

function Markline(element, markdown) {
this.element = element;
var data = parse(markdown);
var data = this.data = parse(markdown);
this.timeline = new Timeline(this.element, data);
}
// @param {String} date
Expand Down Expand Up @@ -182,6 +182,7 @@ define("markline/0.6.0/markline-debug", ["jquery/2.1.1/jquery-debug"], function(
}
Markline.prototype.render = function() {
this.timeline.render();
return this;
};
module.exports = Markline;
});
Expand Down
2 changes: 1 addition & 1 deletion template/assets/markline/0.6.0/markline.js

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

1 change: 1 addition & 0 deletions template/assets/markline/0.6.0/timeline-debug.css
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
width: 100%;
height: 100%;
overflow: hidden;
z-index: 101;

-webkit-transform:translateZ(0);
}
Expand Down
Loading

0 comments on commit c9ebd3e

Please sign in to comment.