afc163
|
32b2c21145
|
site: fix header button style
|
2017-11-03 15:29:25 +08:00 |
|
afc163
|
1af37103f3
|
use ghost
|
2017-11-02 11:18:32 +08:00 |
|
afc163
|
9583bb4c85
|
Add Ant Design Pro
|
2017-11-01 10:50:27 +08:00 |
|
afc163
|
36df1c5f83
|
site: target should be _blank
|
2017-10-31 21:58:41 +08:00 |
|
afc163
|
cc305209c0
|
Fix badge in header
|
2017-10-31 18:07:37 +08:00 |
|
afc163
|
ace590273a
|
Add pro link
|
2017-10-31 16:32:09 +08:00 |
|
afc163
|
a666a59eb0
|
Add china mirror link in footer
|
2017-10-28 00:09:55 +08:00 |
|
afc163
|
65ee579480
|
update footer links
|
2017-10-23 10:08:12 +08:00 |
|
afc163
|
475e4ff23d
|
upgrade eslint-config-airbnb
|
2017-10-09 13:27:35 +08:00 |
|
Wei Zhu
|
ed2303a5da
|
Change primary color in browser (#7516)
|
2017-09-18 17:31:48 +08:00 |
|
afc163
|
6cb3ae46a2
|
site: update color picker position
|
2017-09-04 12:24:40 +08:00 |
|
afc163
|
24e2af63f2
|
site: update footer style
|
2017-09-04 11:55:45 +08:00 |
|
Wei Zhu
|
471da70c1e
|
site: Add a primary color change button (#7401)
|
2017-09-03 22:15:33 +08:00 |
|
Manweill
|
dc1d0af64e
|
官网首页的搜索框,当按下键盘s的时候,会获取焦点 (#7267)
* 官方首页的搜索框,当按下键盘s的时候,会获取焦点
* use AutoComplete
* 移除 this.state.focused
* bugfix
|
2017-08-31 11:47:53 +08:00 |
|
afc163
|
d3ec477f8f
|
Add NG-ZORRO links
|
2017-08-15 23:00:06 +08:00 |
|
afc163
|
57e3be2c32
|
Fix select popupContainer in site header
|
2017-08-14 22:57:45 +08:00 |
|
Amorites
|
29d2a756b0
|
site: place 'search...' at the bottom of the search options (#7021) (#7022)
|
2017-07-31 13:54:31 +08:00 |
|
Minqi Pan
|
d0bbfd3d2d
|
Add Enclose.IO link in footer
|
2017-06-25 20:00:06 +08:00 |
|
afc163
|
3202d28cb9
|
Add mobile.ant.design link in menu, close #3079
|
2017-06-12 10:41:11 +08:00 |
|
afc163
|
7daf47b5b1
|
Add scaffold market link
|
2017-05-13 16:12:35 +08:00 |
|
Tyler
|
919cb22eb7
|
Use the prop-types package from npm instead of React.PropTypes (#6057)
* Use the prop-types package from npm instead of React.PropTypes
* Remove using of PropTypes from React in docs and site
|
2017-05-09 13:40:33 +08:00 |
|
Manjit Kumar
|
4e055ed5d0
|
use PropTypes from 'prop-types' mdoule instead of React
- as React.PropTypes is being deprecated
- Warning: Accessing PropTypes via the main React package is deprecated. Use the prop-types package from npm instead.
- Solution: https://facebook.github.io/react/blog/2017/04/07/react-v15.5.0.html#migrating-from-react.proptypes
|
2017-04-12 02:22:05 +05:30 |
|
afc163
|
3ca3c178cc
|
Add English gitter chat room
|
2017-04-11 18:13:58 +08:00 |
|
afc163
|
f230f61c23
|
Improve docs detail
|
2017-04-02 14:03:42 +08:00 |
|
Benjy Cui
|
dda79aa88e
|
site: add link to design platform
|
2017-03-30 09:29:13 +08:00 |
|
Benjy Cui
|
50f46d0919
|
feat: merge Select[multiple|tags|combobox] to Select[mode], close: #5471 (#5534)
|
2017-03-28 21:27:58 +08:00 |
|
afc163
|
2aae84f375
|
site: fix #5239
|
2017-03-09 21:52:05 +08:00 |
|
afc163
|
bc743a0ea6
|
Add eggjs link in footer
eggjs/egg#492
|
2017-03-02 14:28:23 +08:00 |
|
afc163
|
f997becadc
|
docs: update footer link
|
2017-03-02 14:25:04 +08:00 |
|
paranoidjk
|
15e381ae44
|
docs: update site
|
2017-02-28 21:47:51 +08:00 |
|
afc163
|
4823ce4d08
|
site: update design documentation
|
2017-02-27 18:04:35 +08:00 |
|
afc163
|
05b20c6a9f
|
fix stylelint problems of site
|
2017-02-26 15:41:50 +08:00 |
|
afc163
|
0f6d1db614
|
fix lint
|
2017-02-26 15:20:12 +08:00 |
|
YuyingWu
|
e8cf22ad0e
|
site: fix locale switch
* antD首页从英文切换到中文时,replace导致链接错误
首页从英文转到中文,点击header上的“中文”时,链接会跳到 https://ant.design/index-cn/ant.design/ (Chrome)或者 https://index-cn/ant.design/ (Safari)
bug来自handleLangChange函数下,最后对location.href.replace操作时出错,原因来自replace匹配到location.href的第一个/
('https://ant.design/').replace('/', '/index-cn') 的运行结果是 https:/index-cn/ant.design/
为了避免replace匹配到location.href的第一个/,我建议的方案是使用 location.origin + location.pathname.replace
最后,感谢antD团队开发出那么棒的UI~
* 英转中,url替换(带hash、query)
英转中URL问题,上一版使用了location.origin + location.pathname,会丢失query和hash。此版本原理还是用location.href做replace,鉴于首页pathname可能是/会在替换中匹配到https:后的第一个/,所以先把href的protocol部分提取出来,再做replace,最后再拼回去做跳转。
|
2017-02-26 14:50:12 +08:00 |
|
YuyingWu
|
a5f136f334
|
antD首页从英文切换到中文时,replace导致链接错误 (#5050)
首页从英文转到中文,点击header上的“中文”时,链接会跳到 https://ant.design/index-cn/ant.design/ (Chrome)或者 https://index-cn/ant.design/ (Safari)
bug来自handleLangChange函数下,最后对location.href.replace操作时出错,原因来自replace匹配到location.href的第一个/
('https://ant.design/').replace('/', '/index-cn') 的运行结果是 https:/index-cn/ant.design/
为了避免replace匹配到location.href的第一个/,我建议的方案是使用 location.origin + location.pathname.replace
最后,感谢antD团队开发出那么棒的UI~
|
2017-02-26 00:23:04 +08:00 |
|
Benjy Cui
|
e72d93edfe
|
site: add copy button to demo, close: #4563
|
2017-02-24 11:55:24 +08:00 |
|
afc163
|
205ace69ba
|
Fix bug of switch language in iOS
|
2017-02-21 13:36:17 +08:00 |
|
afc163
|
c3748a60f4
|
site: improve responsive design
|
2017-02-21 12:07:28 +08:00 |
|
afc163
|
d1678711a7
|
docs: update footer
|
2017-02-16 16:25:42 +08:00 |
|
Benjy Cui
|
6fdc6ff19a
|
site: homepage will switch to right lang, close: #4552
|
2017-02-10 12:12:13 +08:00 |
|
Benjy Cui
|
a14bb37ae5
|
site: can search with google now, close: #4814
|
2017-02-10 11:46:57 +08:00 |
|
ddcat1115
|
16ad027988
|
change version slector position (#4799)
|
2017-02-09 19:46:23 +08:00 |
|
afc163
|
cf22bb926a
|
site: update footer style
|
2017-02-07 19:54:30 +08:00 |
|
afc163
|
ac40780265
|
site: update footer link
|
2017-02-07 14:57:09 +08:00 |
|
afc163
|
896bd7e55b
|
fix site style breaks when there is lib directory
|
2017-01-20 21:41:24 +08:00 |
|
Benjy Cui
|
eb254572b7
|
site: upgrade bisheng to 0.20.0
|
2017-01-20 11:48:38 +08:00 |
|
Benjy Cui
|
11bcb58685
|
site: reduce bundle size
|
2017-01-17 15:24:13 +08:00 |
|
Sean Sun
|
456860f61c
|
imporve the user experience of the official site (#4457)
* normalize code based on lint message
* listening url changes instead of writing hard code
* change listen
|
2017-01-08 19:16:13 +08:00 |
|
afc163
|
8e77e1710d
|
move ga script into head
|
2017-01-07 23:30:33 +08:00 |
|
Benjy Cui
|
435eed2e23
|
site: fix lang change in home page
|
2017-01-06 09:08:36 +08:00 |
|