Skip to content

Commit

Permalink
1.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
pmeisen committed Dec 30, 2016
1 parent 9c6fed2 commit 7789ef7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "breinify-api",
"version": "1.0.8",
"version": "1.0.11",
"description": "This is a JavaScript library simplifying the usage of the Breinify API",
"authors": [
"Philipp Meisen <philipp@breinify.com>",
Expand Down
12 changes: 6 additions & 6 deletions dist/breinify-api.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* breinify-api
* v1.0.8
* v1.0.11
**/
/*
* We inject a dependencyScope variable, which will be used
Expand Down Expand Up @@ -12744,14 +12744,14 @@ dependencyScope.jQuery = $;;
});
attributes.add('AJAX_TIMEOUT', {
name: 'timeout',
defaultValue: 1000,
defaultValue: 4000,
validate: function (value) {
return $.isNumeric(value);
}
});

var BreinifyConfig = function (config) {
this.version = '1.0.8';
this.version = '1.0.11';

/*
* Validate the passed config-parameters.
Expand Down Expand Up @@ -12917,7 +12917,7 @@ dependencyScope.jQuery = $;;

var BreinifyUser = function (user, onReady) {
var instance = this;
instance.version = '1.0.8';
instance.version = '1.0.11';

// set the values provided
instance.setAll(user);
Expand Down Expand Up @@ -13274,7 +13274,7 @@ dependencyScope.jQuery = $;;
},

generateRecommendationMessage: function (amount, unixTimestamp) {
return '' + unixTimestamp + amount;
return '' + unixTimestamp;
},

generateLookUpMessage: function (dimensions, unixTimestamp) {
Expand All @@ -13295,7 +13295,7 @@ dependencyScope.jQuery = $;;
* The one and only instance of the library.
*/
var Breinify = {
version: '1.0.8',
version: '1.0.11',
jQueryVersion: $.fn.jquery
};

Expand Down
4 changes: 2 additions & 2 deletions dist/breinify-api.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "breinify-api",
"version": "1.0.9",
"version": "1.0.11",
"description": "This is a JavaScript library simplifying the usage of the Breinify API",
"authors": [
"Philipp Meisen <philipp@breinify.com>",
Expand Down

0 comments on commit 7789ef7

Please sign in to comment.