Skip to content

Commit e107327

Browse files
committed
Fix: callback would not fire correctly
1 parent 6bf5f55 commit e107327

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jquery.cacheImages.indexeddb.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@
188188
}
189189

190190
if( typeof callbackFunction === 'function' ){
191-
callbackFunction.call( url ); // This is the structure to use for our callbacks
191+
callbackFunction.call( this, url ); // This is the structure to use for our callbacks
192192
}
193193
return true;
194194
}

0 commit comments

Comments
 (0)