Skip to content

Commit

Permalink
version 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Apr 26, 2020
1 parent 03accff commit 2a845d6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
|_ _|___ ___ ___ ___ ___
| | | .'| . | . | -_| _|
|_| |__,|_ |_ |___|_|
|___|___| version 0.2.0
|___|___| version 0.2.1
```
## Tagger - Vanilla JavaScript Tag Editor

[![npm](https://img.shields.io/badge/npm-0.2.0-blue.svg)](https://www.npmjs.com/package/@jcubic/tagger)
[![npm](https://img.shields.io/badge/npm-0.2.1-blue.svg)](https://www.npmjs.com/package/@jcubic/tagger)

Usage:

Expand All @@ -33,6 +33,8 @@ tagger(document.querySelector('[name="tags"]'), {allow_spaces: false});


## Changelog
### 0.2.1
* Fix remove_tag when links are disabled
### 0.2.0
* link option
* working completion
Expand All @@ -48,6 +50,6 @@ tagger(document.querySelector('[name="tags"]'), {allow_spaces: false});

## License

Copyright (c) 2018-2019 [Jakub T. Jankiewicz](https://jcubic.pl/me)
Copyright (c) 2018-2020 [Jakub T. Jankiewicz](https://jcubic.pl/me)

Released under the MIT license
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jcubic/tagger",
"version": "0.2.0",
"version": "0.2.1",
"description": "Vanilla JavaScript tag editor",
"main": "tagger.js",
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions tagger.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
* |_ _|___ ___ ___ ___ ___
* | | | .'| . | . | -_| _|
* |_| |__,|_ |_ |___|_|
* |___|___| version 0.2.0
* |___|___| version 0.2.1
*
* Tagger - Vanilla JavaScript Tag Editor
*
* Copyright (c) 2018-2019 Jakub T. Jankiewicz <https://jcubic.pl/me>
* Copyright (c) 2018-2020 Jakub T. Jankiewicz <https://jcubic.pl/me>
* Released under the MIT license
*/
.tagger {
Expand Down Expand Up @@ -81,4 +81,4 @@
.tagger .tagger-completion {
position: absolute;
z-index: 100;
}
}
4 changes: 2 additions & 2 deletions tagger.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
* |_ _|___ ___ ___ ___ ___
* | | | .'| . | . | -_| _|
* |_| |__,|_ |_ |___|_|
* |___|___| version 0.2.0
* |___|___| version 0.2.1
*
* Tagger - Vanilla JavaScript Tag Editor
*
* Copyright (c) 2018-2019 Jakub T. Jankiewicz <https://jcubic.pl/me>
* Copyright (c) 2018-2020 Jakub T. Jankiewicz <https://jcubic.pl/me>
* Released under the MIT license
*/
/* global define, module, global */
Expand Down

0 comments on commit 2a845d6

Please sign in to comment.