Skip to content

Commit f8d3b77

Browse files
svbergeremlenovouser
authored andcommitted
Fix codestyle issues (#86)
1 parent e1f6398 commit f8d3b77

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/typeahead/dataset.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ var Dataset = (function() {
272272
var idx = Math.abs(rendered - that.limit);
273273
rendered += idx;
274274
that._append(query, suggestions.slice(0, idx));
275-
that.async && that.trigger("asyncReceived", query);
275+
that.async && that.trigger('asyncReceived', query);
276276
}
277277
}
278278
},

src/typeahead/menu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ var Menu = (function() {
103103

104104
onSelectableClick = _.bind(this._onSelectableClick, this);
105105
this.$node.on('click.tt', this.selectors.selectable, onSelectableClick);
106-
this.$node.on('mouseover', this.selectors.selectable, function(){ that.setCursor($(this)) });
106+
this.$node.on('mouseover', this.selectors.selectable, function(){ that.setCursor($(this)); });
107107
this.$node.on('mouseleave', function(){ that._removeCursor(); });
108108

109109
_.each(this.datasets, function(dataset) {

0 commit comments

Comments
 (0)