Skip to content

Commit

Permalink
fix bug for input range, support IE10&11
Browse files Browse the repository at this point in the history
  • Loading branch information
hjzheng committed Apr 29, 2015
1 parent 0c9a0ec commit 41909b0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@ https://github.com/foru17/luolei-dotfiles/blob/master/feedly.opml

====

#### [前端收集图谱](http://get-set.cn/front-end-chart/)
#### [前端收集图谱](http://get-set.cn/front-end-collect/)

- clone https://github.com/hjzheng/front-end-collect
- cd front-end-collect
- bower install
- 放入你喜欢的web容器,访问index.html即可
- 你也直接可以访问: http://get-set.cn/front-end-chart/
- 你也直接可以访问: http://get-set.cn/front-end-collect/
- 支持Chrome, Firefox and IE10&11以上浏览器

![image](https://raw.githubusercontent.com/hjzheng/front-end-collect/master/img/front-end-chart.png)

Expand Down
6 changes: 6 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,9 @@
a:hover {
text-decoration: none;
}

/*fix IE10, IE11 type=range can not display in bootstrap style*/
input[type=range] {
width: 200px\0;
display: inline;
}
2 changes: 1 addition & 1 deletion js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ angular.module('frontEnd', [])
//Update the tooltip position and value
d3.select("#tooltip")
.style("left", 10 + "px")
.style("top", 20 + "px")
.style("top", 40 + "px")
.select("#desc")
.text(d.description)

Expand Down

0 comments on commit 41909b0

Please sign in to comment.