Skip to content

Commit

Permalink
Fix syntax error under safari.
Browse files Browse the repository at this point in the history
  • Loading branch information
roncemer committed Sep 3, 2019
1 parent ac4af52 commit 3cc34e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/vue-bootstrap-ajax-combobox.js
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ Vue.component(
this.my_disabled = this.calcReadonlyOrDisabledFromProp('disabled');
},

calcReadonlyOrDisabledFromProp(propname) {
calcReadonlyOrDisabledFromProp:function(propname) {
switch (typeof(this[propname])) {
case 'undefined': return false;
case 'boolean': return this[propname];
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-bootstrap-ajax-combobox",
"version": "1.0.9",
"version": "1.0.10",
"description": "AJAX Combobox autocomplete component for Vue.js 2.x and Bootstrap 4.",
"main": "vue-bootstrap-ajax-combobox.js",
"scripts": {
Expand Down

0 comments on commit 3cc34e2

Please sign in to comment.