Skip to content

Commit

Permalink
Update version to 0.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mcfarljw committed Jun 23, 2016
1 parent 5a24491 commit 77e1e09
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions dist/backbone-gelato.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Backbone Gelato
* Version: 0.5.5
* Date: Wed Jun 22 2016 08:37:17 GMT-0400 (EDT)
* Version: 0.5.6
* Date: Thu Jun 23 2016 09:42:16 GMT-0400 (EDT)
*/
html, body {
height: 100%;
Expand Down
14 changes: 8 additions & 6 deletions dist/backbone-gelato.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Backbone Gelato
* Version: 0.5.5
* Date: Wed Jun 22 2016 08:37:17 GMT-0400 (EDT)
* Version: 0.5.6
* Date: Thu Jun 23 2016 09:42:16 GMT-0400 (EDT)
*/
;(function(root, factory) {
if (typeof define === 'function' && define.amd) {
Expand Down Expand Up @@ -42,9 +42,9 @@ if (Backbone === undefined) {

var Gelato = {};

Gelato._BUILD = 'Wed Jun 22 2016 08:37:17 GMT-0400 (EDT)';
Gelato._BUILD = 'Thu Jun 23 2016 09:42:16 GMT-0400 (EDT)';

Gelato._VERSION = '0.5.5';
Gelato._VERSION = '0.5.6';

Gelato.isLocalhost = function () {
return location.hostname === 'localhost';
Expand Down Expand Up @@ -453,11 +453,13 @@ var GelatoRouter = function (_Backbone$Router) {

_createClass(GelatoRouter, [{
key: 'execute',
value: function execute(callback, params) {
value: function execute(callback, args, name) {
if (this.page) {
this.page.remove();
}
callback.apply(this, params);
this.trigger('navigate:before', args, name);
callback && callback.apply(this, args);
this.trigger('navigate:after', args, name);
}
}, {
key: 'start',
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.5",
"version": "0.5.6",
"license": "MIT",
"repository": {
"type": "git",
Expand Down

0 comments on commit 77e1e09

Please sign in to comment.