Skip to content

Commit

Permalink
2.5.5 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
sdturner02 committed Apr 18, 2016
1 parent 1fb7927 commit 3549d66
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions SimpleAjaxUploader.js
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ ss.indexOf = arr.indexOf ?
/**
* Removes an element from an array
*/
ss.array_delete = function( array, elem ) {
ss.arrayDelete = function( array, elem ) {
var index = ss.indexOf( array, elem );

if ( index > -1 ) {
Expand Down Expand Up @@ -1907,7 +1907,7 @@ ss.DragAndDrop = {
};

elem.ondragleave = function( e ) {
ss.array_delete( collection, e.target );
ss.arrayDelete( collection, e.target );

if ( collection.length === 0 ) {
ss.removeClass( this, self._opts.dragClass );
Expand All @@ -1920,7 +1920,7 @@ ss.DragAndDrop = {
e.stopPropagation();
e.preventDefault();

ss.array_delete( collection, e.target );
ss.arrayDelete( collection, e.target );

if ( collection.length === 0 ) {
ss.removeClass( this, self._opts.dragClass );
Expand Down
Loading

0 comments on commit 3549d66

Please sign in to comment.