This commit is contained in:
Adam Bradley
2014-01-09 09:49:37 -06:00
parent 9f952c3a50
commit cd65a8dc7b
13 changed files with 22 additions and 28 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "ionic",
"version": "0.9.18",
"version": "0.9.19",
"homepage": "https://github.com/driftyco/ionic",
"authors": [
"Max Lynch <max@drifty.com>",

View File

@@ -1,7 +1,7 @@
{
"repo": "driftyco/ionic",
"development": {},
"version": "0.9.18",
"version": "0.9.19",
"styles": [
"dist/css/ionic.css"
],

2
dist/css/ionic.css vendored
View File

@@ -2,7 +2,7 @@
* Copyright 2013 Drifty Co.
* http://drifty.com/
*
* Ionic, v0.9.17
* Ionic, v0.9.19
* A powerful HTML5 mobile app framework.
* http://ionicframework.com/
*

View File

File diff suppressed because one or more lines are too long

View File

@@ -1,4 +1,4 @@
@charset "UTF-8";/*!
/*!
* Copyright 2013 Drifty Co.
* http://drifty.com/

View File

@@ -3974,9 +3974,7 @@ var $AnimateProvider = ['$provide', function($provide) {
* removed from the DOM
*/
leave : function(element, done) {
//element.remove();
var domElement = element[0];
domElement.parentElement.removeChild(domElement);
element.remove();
done && $timeout(done, 0, false);
},

View File

@@ -2,7 +2,7 @@
* Copyright 2013 Drifty Co.
* http://drifty.com/
*
* Ionic, v0.9.18
* Ionic, v0.9.19
* A powerful HTML5 mobile app framework.
* http://ionicframework.com/
*
@@ -847,9 +847,7 @@ angular.module('ionic.service.view', ['ui.router'])
// start the animations
if(opts.leavingElement) {
$animate.leave(opts.leavingElement, function() {
console.log('leave complete')
});
$animate.leave(opts.leavingElement);
}
$animate.enter(opts.enteringElement, opts.parentElement);
@@ -2520,7 +2518,7 @@ angular.module('ionic.ui.viewState', ['ionic.service.view', 'ionic.service.gestu
$scope.$emit('viewState.rightButtonsChanged', $scope.rightButtons);
});
}
};
}
};
}])

View File

File diff suppressed because one or more lines are too long

4
dist/js/ionic.js vendored
View File

@@ -2,7 +2,7 @@
* Copyright 2013 Drifty Co.
* http://drifty.com/
*
* Ionic, v0.9.18
* Ionic, v0.9.19
* A powerful HTML5 mobile app framework.
* http://ionicframework.com/
*
@@ -16,7 +16,7 @@
window.ionic = {
controllers: {},
views: {},
version: '0.9.18'
version: '0.9.19'
};;
(function(ionic) {

View File

File diff suppressed because one or more lines are too long

View File

@@ -207,7 +207,7 @@ angular.module('ionic.ui.viewState', ['ionic.service.view', 'ionic.service.gestu
$scope.$emit('viewState.rightButtonsChanged', $scope.rightButtons);
});
}
};
}
};
}])

View File

@@ -327,9 +327,7 @@ angular.module('ionic.service.view', ['ui.router'])
// start the animations
if(opts.leavingElement) {
$animate.leave(opts.leavingElement, function() {
console.log('leave complete')
});
$animate.leave(opts.leavingElement);
}
$animate.enter(opts.enteringElement, opts.parentElement);

View File

@@ -1,7 +1,7 @@
{
"name": "ionic",
"private": false,
"version": "0.9.18",
"version": "0.9.19",
"devDependencies": {
"karma": "~0.10",
"grunt": "~0.4.1",