Skip to content

Commit e1a11b0

Browse files
committed
build: Travis CI automatic compilation
1 parent 1ca665f commit e1a11b0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

dist/arc-popup/index.wxml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<l-popup show="{{show}}" direction="{{direction}}" transition="{{transition}}" opacity="{{opacity}}" locked="{{locked}}" z-index="{{zIndex}}" l-class="l-class" l-bg-class="l-bg-class" bind:lintap="onArcPopupTap">
1+
<l-popup show="{{show}}" contentAlign="{{direction}}" transition="{{transition}}" opacity="{{opacity}}" locked="{{locked}}" z-index="{{zIndex}}" l-class="l-class" l-bg-class="l-bg-class" bind:lintap="onArcPopupTap">
22
<scroll-view scroll-y="true" class="arc-popup l-panel-class" style="{{arcStyle}}">
33
<view class="header-popup {{headerFixed ? 'fixed' : ''}} l-header-class">
44
<slot name="header"/>

dist/counter/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/dist/arc-popup/index.wxml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<l-popup
22
show="{{show}}"
3-
direction="{{direction}}"
3+
contentAlign="{{direction}}"
44
transition="{{transition}}"
55
opacity="{{opacity}}"
66
locked="{{locked}}"

examples/dist/counter/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Component({
7070
},
7171

7272
blurCount(value, callback) {
73-
if (value) {
73+
if (value !== undefined) {
7474
this.valueRange(value);
7575
}
7676
callback && callback();

0 commit comments

Comments
 (0)