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

Added a setting for disabling caching #795

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = function(grunt) {
uglify: {
options: {
banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */\n',
compress: true
compress: {}
},
build: {
src: 'src/<%= pkg.name %>.js',
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "jquery-tokeninput",
"version" : "1.6.2",
"version" : "1.7.1",
"description" : "Tokeninput is a jQuery plugin which allows your users to select multiple items from a predefined list, using autocompletion as they type to find each item.",
"main" : [ "./src/jquery.tokeninput.js", "./styles/token-input.css" ],
"homepage" : "http://loopj.com/jquery-tokeninput",
Expand Down
4 changes: 2 additions & 2 deletions build/jquery.tokeninput.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "jquery-tokeninput",
"version" : "1.6.2",
"version" : "1.7.2",
"description" : "Tokeninput is a jQuery plugin which allows your users to select multiple items from a predefined list, using autocompletion as they type to find each item.",
"main" : [ "./src/jquery.tokeninput.js", "./styles/token-input.css" ],
"homepage" : "http://loopj.com/jquery-tokeninput",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquery.tokeninput",
"version": "2.0.0",
"name": "jquery-tokeninput",
"version": "1.7.3",
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-jshint": "~0.6.3",
Expand Down
Loading