Skip to content

Commit

Permalink
Merge pull request OpenNHP#51 from allmobilize/codename-h
Browse files Browse the repository at this point in the history
weekly update - 2014.09 W1
  • Loading branch information
Codename H committed Sep 5, 2014
2 parents 55e5c11 + dfa2f95 commit f005b11
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
# Amaze UI Change Log
---

## 2014.09 W1

__JS 插件__

- `NEW` 新增移动端图片浏览插件(还在优化完善)。

__Navbar 组件__

- `IMPROVED` 使用 Flexbox 实现工具栏平均分布;
- `FIXED` 修复二维码 URL。


## 2014.08 W4

__Navbar 组件__
Expand Down
Binary file removed dist/AmazeUI-1.0.0-beta1-20140901.zip
Binary file not shown.
Binary file added dist/AmazeUI-1.0.0-beta1-20140905.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion js/ui.share.js
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ define(function(require, exports, module) {
var qrNode = new QRCode({
render: 'canvas',
correctLevel: 0,
text: doc.location,
text: doc.location.href,
width: 180,
height: 180,
background: '#fff',
Expand Down
2 changes: 1 addition & 1 deletion widget/navbar/src/navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ define(function(require, exports, module) {
var qrnode = new QRCode({
render: 'canvas',
correctLevel: 0,
text: window.location,
text: window.location.href,
width: 200,
height: 200,
background: '#fff',
Expand Down
2 changes: 1 addition & 1 deletion widget/navbar/src/navbar.less
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
}

canvas {
display: inline-block;
display: block;
width: 200px;
height: 200px;
}
Expand Down

0 comments on commit f005b11

Please sign in to comment.