Skip to content

Commit

Permalink
update dist builds
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Jul 8, 2014
1 parent 5af00fd commit 0ab192b
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 15 deletions.
4 changes: 2 additions & 2 deletions _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ <h2>A simple (proof-of-concept) script loader that caches scripts with localStor
<p>
<strong>Version 0.5.0: </strong>
<a href="dist/basket.js">basket.js</a> (2.2 kB) &nbsp;
<a href="dist/basket.min.js">basket.min.js</a>* (1.4 kB gzipped) &nbsp;
<a href="dist/basket.full.min.js">basket.full.min.js</a> (4.7 kB gzipped) &nbsp;
<a href="dist/basket.min.js">basket.min.js</a>* (0.7 kB gzipped) &nbsp;
<a href="dist/basket.full.min.js">basket.full.min.js</a> (3.8 kB gzipped) &nbsp;
<small>* = Use this version if you want to manually handle the <a href="https://github.com/tildeio/rsvp.js">rsvp.js</a> dependency</small>
</p>
<div id="message" class="content"><p><strong>If you're seeing this message, something has gone wrong. Please ensure you are testing this page using a HTTP server.</strong></p></div>
3 changes: 1 addition & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
{
"name": "basket.js",
"version": "0.3.0",
"main": "dist/basket.js",
"dependencies": {
"rsvp": "~3.0.1"
"rsvp": "~3.0.8"
},
"ignore": [
"_*",
Expand Down
6 changes: 3 additions & 3 deletions dist/basket.full.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/basket.full.min.js.map

Large diffs are not rendered by default.

12 changes: 7 additions & 5 deletions dist/basket.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* basket.js
* v0.4.0 - 2014-01-07
* v0.5.0 - 2014-07-09
* http://addyosmani.github.com/basket.js
* (c) Addy Osmani; License
* Created by: Addy Osmani, Sindre Sorhus, Andrée Hansson, Mat Scales
Expand Down Expand Up @@ -52,7 +52,7 @@

var getUrl = function( url ) {
var promise = new RSVP.Promise( function( resolve, reject ){

var xhr = new XMLHttpRequest();
xhr.open( 'GET', url );

Expand All @@ -71,12 +71,11 @@

// By default XHRs never timeout, and even Chrome doesn't implement the
// spec for xhr.timeout. So we do it ourselves.
/*
setTimeout( function () {
if( xhr.readyState < 4 ) {
xhr.abort();
}
}, basket.timeout );*/
}, basket.timeout );

xhr.send();
});
Expand All @@ -88,7 +87,9 @@
return getUrl( obj.url ).then( function( result ) {
var storeObj = wrapStoreData( obj, result );

addLocalStorage( obj.key , storeObj );
if (!obj.skipCache) {
addLocalStorage( obj.key , storeObj );
}

return storeObj;
});
Expand All @@ -99,6 +100,7 @@
obj.data = data.content;
obj.originalType = data.type;
obj.type = obj.type || data.type;
obj.skipCache = obj.skipCache || false;
obj.stamp = now;
obj.expire = now + ( ( obj.expire || defaultExpiration ) * 60 * 60 * 1000 );

Expand Down
6 changes: 3 additions & 3 deletions dist/basket.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/basket.min.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 comment on commit 0ab192b

@sindresorhus
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For anyone looking this is the actual 0.5.0

Please sign in to comment.