Skip to content

Commit

Permalink
Removing unused _ERROR
Browse files Browse the repository at this point in the history
  • Loading branch information
zerious committed Jun 17, 2014
1 parent 2073ca0 commit 6080f87
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
13 changes: 6 additions & 7 deletions jymin.js
@@ -1,9 +1,9 @@
/**
* _ _ ___ ____ ____
* | |_ _ _ __ ___ (_)_ __ __ __/ _ \ |___ \ | ___|
* _ | | | | | '_ ` _ \| | '_ \ \ \ / / | | | __) | |___ \
* | |_| | |_| | | | | | | | | | | \ V /| |_| | / __/ _ ___) |
* \___/ \__, |_| |_| |_|_|_| |_| \_/ \___(_)_____(_)____/
* _ _ ___ ____ __
* | |_ _ _ __ ___ (_)_ __ __ __/ _ \ |___ \ / /_
* _ | | | | | '_ ` _ \| | '_ \ \ \ / / | | | __) || '_ \
* | |_| | |_| | | | | | | | | | | \ V /| |_| | / __/ | (_) |
* \___/ \__, |_| |_| |_|_|_| |_| \_/ \___(_)_____(_)___/
* |___/
*
* http://lighter.io/jymin
Expand All @@ -30,7 +30,7 @@
*/


this.jymin = {version: '0.2.5'};
this.jymin = {version: '0.2.6'};

/**
* Empty handler.
Expand Down Expand Up @@ -77,7 +77,6 @@ var getResponse = function (
var data = parse(request.responseText);
data._STATUS = status;
data._REQUEST = request;
data = data || {_ERROR: '_OFFLINE'};
callback(data);
}
};
Expand Down
2 changes: 1 addition & 1 deletion jymin.min.js

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

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -12,7 +12,7 @@
"zepto",
"alternative"
],
"version": "0.2.5",
"version": "0.2.6",
"main": "chug/chug.js",
"homepage": "http://lighter.io/jymin",
"repository": "http://github.com/zerious/jymin.git",
Expand Down
1 change: 0 additions & 1 deletion scripts/ajax.js
Expand Up @@ -43,7 +43,6 @@ var getResponse = function (
var data = parse(request.responseText);
data._STATUS = status;
data._REQUEST = request;
data = data || {_ERROR: '_OFFLINE'};
callback(data);
}
};
Expand Down

0 comments on commit 6080f87

Please sign in to comment.