js: Use == but === for comparison

This commit is contained in:
yoshihara 2015-04-20 18:52:53 +09:00
parent ac778ea69a
commit 88aec6f538

View File

@ -33,7 +33,7 @@
computed: {
useTextArea: function() {
return this.format == "multiline";
return this.format === "multiline";
}
},