Skip to content

Commit

Permalink
Released 0.6.12.
Browse files Browse the repository at this point in the history
  • Loading branch information
brianreavis committed Aug 6, 2013
1 parent 6fbc64c commit 6def72b
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "selectize",
"keywords": ["select", "ui", "form", "input", "control", "autocomplete", "tagging", "tag"],
"description": "Selectize is a jQuery-based custom <select> UI control. Useful for tagging, contact lists, country selectors, etc.",
"version": "0.6.11",
"version": "0.6.12",
"license": "Apache License, Version 2.0",
"readmeFilename": "README.md",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion selectize.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! selectize.css - v0.6.11 | https://github.com/brianreavis/selectize.js | Apache License (v2) */
/*! selectize.css - v0.6.12 | https://github.com/brianreavis/selectize.js | Apache License (v2) */

/* --- file: "src/selectize.css" --- */

Expand Down
2 changes: 1 addition & 1 deletion selectize.jquery.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "selectize",
"version": "0.6.11",
"version": "0.6.12",
"title": "Selectize.js",
"author": {
"name": "Brian Reavis",
Expand Down
4 changes: 2 additions & 2 deletions selectize.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! selectize.js - v0.6.11 | https://github.com/brianreavis/selectize.js | Apache License (v2) */
/*! selectize.js - v0.6.12 | https://github.com/brianreavis/selectize.js | Apache License (v2) */

(function(factory) {
if (typeof exports === 'object') {
Expand Down Expand Up @@ -764,7 +764,7 @@
mousedown: function(e) {
if (self.isFocused) {
// prevent events on the dropdown scrollbar from causing the control to blur
if (e.target === self.$dropdown[0]) {
if (e.target === self.$dropdown[0] || e.target.parentNode === self.$dropdown[0]) {
var ignoreFocus = self.ignoreFocus;
self.ignoreFocus = true;
window.setTimeout(function() {
Expand Down
22 changes: 11 additions & 11 deletions selectize.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6def72b

Please sign in to comment.