Skip to content

Commit

Permalink
Update version to 0.5.13
Browse files Browse the repository at this point in the history
  • Loading branch information
mcfarljw committed Sep 11, 2016
1 parent 11d45e3 commit a39a826
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 8 deletions.
5 changes: 3 additions & 2 deletions dist/backbone-gelato.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
/**
* Backbone Gelato
* Version: 0.5.12
* Date: Wed Sep 07 2016 18:33:12 GMT+0800 (CST)
* Version: 0.5.13
* Date: Sun Sep 11 2016 11:25:36 GMT+0800 (CST)
*/
html, body {
height: 100%;
margin: 0;
overflow: auto;
padding: 0;
position: absolute;
width: 100%; }
Expand Down
19 changes: 14 additions & 5 deletions dist/backbone-gelato.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Backbone Gelato
* Version: 0.5.12
* Date: Wed Sep 07 2016 18:33:12 GMT+0800 (CST)
* Version: 0.5.13
* Date: Sun Sep 11 2016 11:25:36 GMT+0800 (CST)
*/
;(function(root, factory) {
if (typeof define === 'function' && define.amd) {
Expand Down Expand Up @@ -42,9 +42,18 @@ if (Backbone === undefined) {
window.Backbone = Backbone;
}

Gelato._BUILD = 'Wed Sep 07 2016 18:33:12 GMT+0800 (CST)';
Gelato._BUILD = 'Sun Sep 11 2016 11:25:36 GMT+0800 (CST)';

Gelato._VERSION = '0.5.12';
Gelato._VERSION = '0.5.13';

Gelato.getCookie = function (name) {
var value = '; ' + document.cookie;
var parts = value.split('; ' + name + '=');

if (parts.length == 2) {
return parts.pop().split(';').shift();
}
};

Gelato.isCordova = function () {
return window.cordova !== undefined;
Expand All @@ -55,7 +64,7 @@ Gelato.isLocalhost = function () {
};

Gelato.isWebsite = function () {
return _.includes(location.protocol, 'http');
return location.protocol.indexOf('http') !== -1;
};

var GelatoApplication = function (_Backbone$Model) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"email": "[email protected]",
"url": "http://www.jernung.com"
},
"version": "0.5.12",
"version": "0.5.13",
"license": "MIT",
"repository": {
"type": "git",
Expand Down

0 comments on commit a39a826

Please sign in to comment.