@dolphinweex/weex-vue-render 0.2.45 → 0.2.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.common.js +2 -2
- package/package.json +1 -1
package/dist/index.common.js
CHANGED
|
@@ -5547,7 +5547,7 @@ function getInput (weex) {
|
|
|
5547
5547
|
},
|
|
5548
5548
|
|
|
5549
5549
|
mounted: function mounted () {
|
|
5550
|
-
if (this.autofocus !== 'false'
|
|
5550
|
+
if (this.autofocus !== 'false' && this.autofocus !== false) {
|
|
5551
5551
|
this.focus(this.autofocus)
|
|
5552
5552
|
}
|
|
5553
5553
|
},
|
|
@@ -9278,7 +9278,7 @@ var web = {
|
|
|
9278
9278
|
var components = [
|
|
9279
9279
|
// a,
|
|
9280
9280
|
// div,
|
|
9281
|
-
image,
|
|
9281
|
+
// image,
|
|
9282
9282
|
input,
|
|
9283
9283
|
_switch,
|
|
9284
9284
|
scrollable,
|
package/package.json
CHANGED