Skip to content

Commit

Permalink
Update bower.json to 1.0.33
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Varga committed Aug 28, 2014
1 parent 93b7d3e commit a9e419a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "stratajs",
"description": "JavaScript Library to interact with the Red Hat Customer Portal API",
"version": "1.0.32",
"version": "1.0.33",
"main": "strata.js",
"repository": {
"type": "git",
Expand Down
5 changes: 2 additions & 3 deletions strata.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,11 @@
fetchAccounts,
fetchAccount,
fetchURI,
fetchAccountUsers,
fetchEntitlements,
authHostname,
fetchAccountUsers;

strata.version = "1.0.32";
strata.version = "1.0.33";
redhatClientID = "stratajs-" + strata.version;

if (window.portal && window.portal.host) {
Expand Down Expand Up @@ -131,7 +130,7 @@
basicAuthToken = localStorage.getItem("rhAuthToken");
authedUser.login = localStorage.getItem("rhUserName");

strata.setCredentials = function (username, password ) {
strata.setCredentials = function (username, password) {
if(isASCII(username + password)){
basicAuthToken = btoa(username + ":" + password);
localStorage.setItem("rhAuthToken", basicAuthToken);
Expand Down

0 comments on commit a9e419a

Please sign in to comment.