add bundle version

This commit is contained in:
Fabian Vogelsteller 2015-04-17 10:26:11 +02:00
parent 135b0440e2
commit 677bb68633
6 changed files with 14 additions and 8 deletions

5
dist/web3-light.js vendored
View File

@ -2335,7 +2335,7 @@ var inputPostFormatter = function(post) {
// fallback
if (!utils.isArray(post.topics)) {
post.topics = [post.topics];
post.topics = post.topics ? [post.topics] : [];
}
// format the following options
@ -2367,6 +2367,9 @@ var outputPostFormatter = function(post){
}
// format the following options
if (!post.topics) {
post.topics = [];
}
post.topics = post.topics.map(function(topic){
return utils.toAscii(topic);
});

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

5
dist/web3.js vendored
View File

@ -2335,7 +2335,7 @@ var inputPostFormatter = function(post) {
// fallback
if (!utils.isArray(post.topics)) {
post.topics = [post.topics];
post.topics = post.topics ? [post.topics] : [];
}
// format the following options
@ -2367,6 +2367,9 @@ var outputPostFormatter = function(post){
}
// format the following options
if (!post.topics) {
post.topics = [];
}
post.topics = post.topics.map(function(topic){
return utils.toAscii(topic);
});

4
dist/web3.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/web3.min.js vendored

File diff suppressed because one or more lines are too long