Skip to content

Commit

Permalink
Merge pull request snapappointments#873 from sweatty1/master
Browse files Browse the repository at this point in the history
closes snapappointments#741 passing in title option being overwritten

Conflicts:
	dist/js/bootstrap-select.js.map
  • Loading branch information
t0xicCode committed Jan 19, 2015
2 parents d0b9174 + 6a2cfd0 commit 253bca0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion dist/js/bootstrap-select.js
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,9 @@
}
}

this.options.title = this.$element.attr('title');
if (this.options.title == undefined) {
this.options.title = this.$element.attr('title');
}

if (this.options.selectedTextFormat == 'static') {
title = this.options.title;
Expand Down
Loading

0 comments on commit 253bca0

Please sign in to comment.