Skip to content

Commit

Permalink
Upgrading version to 3.4.0 (Dropzone.forElement throws an exception n…
Browse files Browse the repository at this point in the history
…ow instead of returning null if no Dropzone.)
  • Loading branch information
enyo committed Jun 13, 2013
1 parent e1a1e6c commit c479c07
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dropzone",
"repo": "enyo/dropzone",
"version": "3.3.1-dev",
"version": "3.4.0",
"description": "Handles drag and drop of files for you.",
"scripts": [ "index.js", "lib/dropzone.js" ],
"styles": [ "downloads/css/basic.css" ],
Expand Down
2 changes: 1 addition & 1 deletion downloads/dropzone-amd-module.js
Original file line number Diff line number Diff line change
Expand Up @@ -972,7 +972,7 @@ Emitter.prototype.hasListeners = function(event){

})(Em);

Dropzone.version = "3.3.1-dev";
Dropzone.version = "3.4.0";

Dropzone.options = {};

Expand Down
2 changes: 1 addition & 1 deletion downloads/dropzone-amd-module.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion downloads/dropzone.js
Original file line number Diff line number Diff line change
Expand Up @@ -1174,7 +1174,7 @@ require.register("dropzone/lib/dropzone.js", function(exports, require, module){

})(Em);

Dropzone.version = "3.3.1-dev";
Dropzone.version = "3.4.0";

Dropzone.options = {};

Expand Down
2 changes: 1 addition & 1 deletion downloads/dropzone.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/dropzone.js
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@

})(Em);

Dropzone.version = "3.3.1-dev";
Dropzone.version = "3.4.0";

Dropzone.options = {};

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dropzone",
"version": "3.3.1-dev",
"version": "3.4.0",
"description": "Handles drag and drop of files for you.",
"keywords": [ "dragndrop", "drag and drop", "file upload", "upload" ],
"homepage": "http://www.dropzonejs.com",
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<img alt="Dropzone.js" src="http://www.dropzonejs.com/images/logo.png" />
</h1>

*Version 3.3.1-dev*
*Version 3.4.0*

Dropzone.js is a light weight JavaScript library that turns an HTML element into a dropzone.
This means that a user can drag and drop a file onto it, and the file gets uploaded to the server via AJAX.
Expand Down
2 changes: 1 addition & 1 deletion src/dropzone.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,7 @@ class Dropzone extends Em



Dropzone.version = "3.3.1-dev"
Dropzone.version = "3.4.0"


# This is a map of options for your different dropzones. Add configurations
Expand Down

0 comments on commit c479c07

Please sign in to comment.