Skip to content

Commit 478e4dd

Browse files
author
SimonSteinberger
committed
Fixed #2: Unspecified error on IE 10.
1 parent cc6f371 commit 478e4dd

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

auto-complete.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
JavaScript autoComplete v1.0.2
2+
JavaScript autoComplete v1.0.3
33
Copyright (c) 2014 Simon Steinberger / Pixabay
44
GitHub: https://github.com/Pixabay/JavaScript-autoComplete
55
License: http://www.opensource.org/licenses/mit-license.php
@@ -54,7 +54,6 @@ var autoComplete = (function(){
5454
that.sc = document.createElement('div');
5555
that.sc.className = 'autocomplete-suggestions '+o.menuClass;
5656

57-
that.setAttribute('data-sc', that.sc);
5857
that.autocompleteAttr = that.getAttribute('autocomplete');
5958
that.setAttribute('autocomplete', 'off');
6059
that.cache = {};

auto-complete.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "javascript-auto-complete",
33
"description": "An extremely lightweight vanilla JavaScript completion suggester.",
4-
"version": "1.0.2",
4+
"version": "1.0.3",
55
"homepage": "https://github.com/Pixabay/JavaScript-autoComplete",
66
"authors": [{
77
"name": "Simon Steinberger",

readme.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ https://goodies.pixabay.com/javascript/auto-complete/demo.html
2222

2323
## Changelog
2424

25+
### Version 1.0.3 - 2015/11/02
26+
27+
* Fixed #2: Unspecified error on IE 10.
28+
2529
### Version 1.0.2 - 2015/08/15
2630

2731
* Fixed: Hide suggestions on fast input.

0 commit comments

Comments
 (0)