Skip to content
This repository has been archived by the owner on Sep 28, 2020. It is now read-only.

Commit

Permalink
0.11.9
Browse files Browse the repository at this point in the history
  • Loading branch information
ragulka committed Mar 10, 2014
1 parent 4c9e2eb commit bd04545
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bootstrap-tokenfield.jquery.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bootstrap-tokenfield",
"version": "0.11.8",
"version": "0.11.9",
"title": "bootstrap-tokenfield",
"author": {
"name": "ragulka",
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bootstrap-tokenfield",
"description": "Advanced tagging/tokenizing plugin for input fields with a focus on keyboard and copy-paste support.",
"version": "0.11.8",
"version": "0.11.9",
"authors": [
{
"name": "ragulka",
Expand Down
4 changes: 4 additions & 0 deletions dist/bootstrap-tokenfield.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@
.appendTo( this.$wrapper )
.prop( 'placeholder', this.$element.prop('placeholder') )
.prop( 'id', id + '-tokenfield' )
.prop( 'tabindex', this.$element.data('original-tabindex') )

// Re-route original input label to new input
var $label = $( 'label[for="' + this.$element.prop('id') + '"]' )
Expand Down Expand Up @@ -803,13 +804,16 @@
.select()
.data( 'edit', true )
.width( tokenWidth )

this.update();
}

, unedit: function (focus) {
var $_input = this.$input.hasClass('tt-input') ? this.$input.parent() : this.$input
$_input.appendTo( this.$wrapper )

this.$input.data('edit', false)
this.$mirror.text('')

this.update()

Expand Down
4 changes: 2 additions & 2 deletions dist/bootstrap-tokenfield.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/bootstrap-tokenfield.css
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
border-bottom: 1px dotted #ebccd1;
border-bottom: 1px dotted #d9534f;
}
.tokenfield .token.invalid.active {
background: #ededed;
Expand Down
2 changes: 1 addition & 1 deletion dist/css/bootstrap-tokenfield.min.css

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

2 changes: 1 addition & 1 deletion docs-assets/js/docs.min.js

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "bootstrap-tokenfield",
"title": "Bootstrap Tokenfield",
"description": "Advanced tagging/tokenizing plugin for input fields with a focus on keyboard and copy-paste support.",
"version": "0.11.8",
"version": "0.11.9",
"main": "dist/bootstrap-tokenfield.js",
"homepage": "http://sliptree.github.io/bootstrap-tokenfield/",
"author": {
Expand Down

0 comments on commit bd04545

Please sign in to comment.