Skip to content

Commit 790223e

Browse files
author
Daniel Farrell
committed
Release 1.1.7
1 parent 8663e27 commit 790223e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ When activating the plugin, you may include an object containing options for the
6363
`template`: Custom function that returns markup for the combobox.
6464

6565
`bsVersion`: Version of bootstrap being used. This is used by the default `template` function to generate markup correctly. Defaults to '3'. Set to '2' for compatibility with Bootstrap 2
66-
66+
6767
`appendId`: The desired id of the transformed combobox. This will become the id attr and can be mapped to a label using the for attribute. Useful for accessibility.
6868

6969

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap-combobox",
3-
"version": "1.1.6",
3+
"version": "1.1.7",
44
"homepage": "https://github.com/danielfarrell/bootstrap-combobox",
55
"authors": [
66
"Daniel Farrell <[email protected]>",

js/bootstrap-combobox.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* =============================================================
2-
* bootstrap-combobox.js v1.1.6
2+
* bootstrap-combobox.js v1.1.7
33
* =============================================================
44
* Copyright 2012 Daniel Farrell
55
*
@@ -98,7 +98,7 @@
9898
, transferAttributes: function() {
9999
this.options.placeholder = this.$source.attr('data-placeholder') || this.options.placeholder
100100
if(this.options.appendId !== "undefined") {
101-
this.$element.attr('id', this.$source.attr('id') + this.options.appendId);
101+
this.$element.attr('id', this.$source.attr('id') + this.options.appendId);
102102
}
103103
this.$element.attr('placeholder', this.options.placeholder)
104104
this.$target.prop('name', this.$source.prop('name'))

0 commit comments

Comments
 (0)