Skip to content

Commit

Permalink
fix(autocomplete): Remove usage of hx.Map
Browse files Browse the repository at this point in the history
  • Loading branch information
charlieTheBotDev committed Jul 25, 2018
1 parent 337b455 commit dffbb45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
13 changes: 1 addition & 12 deletions demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -903,17 +903,6 @@ <h3>Collapsible</h3>
</script>
</div>
</div>
<div class="demo-section">
<h3>Color Picker</h3>
<div class="demo-section-examples">
<button class="hx-btn" id="basicPickerButton">Basic</button>
<button class="hx-btn" id="fullPickerButton">Full</button>
<script>
new hx.ColorPicker("#basicPickerButton")
new hx.ColorPicker("#fullPickerButton", { showInputs: true })
</script>
</div>
</div>
<div class="demo-section">
<h3>Crumbtrail</h3>
<div class="demo-section-examples">
Expand Down Expand Up @@ -2628,7 +2617,7 @@ <h3>Tree</h3>
<script>
new hx.Tree('#example-tree')
new hx.Tree('#example-dynamic-tree', {
renderer: function(elem, data) { hx.select(elem).html(data.name) },
renderer: function(elem, data) { hx.select(elem).text(data.name) },
items: [{
name: 'Parent 1',
children: [{
Expand Down
2 changes: 1 addition & 1 deletion modules/autocomplete/main/index.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ class AutoComplete extends hx.EventEmitter
self = this

# create the data cache for storing the datasets based on their search term
_.data = new hx.Map()
_.data = new hx._.Map()



Expand Down

0 comments on commit dffbb45

Please sign in to comment.