mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-08 23:58:13 +08:00
Removed view-full class on tabs, it was a noop
This commit is contained in:
1
dist/js/ionic-angular.js
vendored
1
dist/js/ionic-angular.js
vendored
@ -26046,7 +26046,6 @@ angular.module('ionic.ui.tabs', ['ngAnimate'])
|
|||||||
childScope = $scope.$new();
|
childScope = $scope.$new();
|
||||||
transclude(childScope, function(clone) {
|
transclude(childScope, function(clone) {
|
||||||
childElement = clone;
|
childElement = clone;
|
||||||
childElement.addClass('view-full');
|
|
||||||
$animate.enter(clone, $element.parent(), $element);
|
$animate.enter(clone, $element.parent(), $element);
|
||||||
|
|
||||||
if($scope.title) {
|
if($scope.title) {
|
||||||
|
|||||||
1
js/ext/angular/src/directive/ionicTabBar.js
vendored
1
js/ext/angular/src/directive/ionicTabBar.js
vendored
@ -140,7 +140,6 @@ angular.module('ionic.ui.tabs', ['ngAnimate'])
|
|||||||
childScope = $scope.$new();
|
childScope = $scope.$new();
|
||||||
transclude(childScope, function(clone) {
|
transclude(childScope, function(clone) {
|
||||||
childElement = clone;
|
childElement = clone;
|
||||||
childElement.addClass('view-full');
|
|
||||||
$animate.enter(clone, $element.parent(), $element);
|
$animate.enter(clone, $element.parent(), $element);
|
||||||
|
|
||||||
if($scope.title) {
|
if($scope.title) {
|
||||||
|
|||||||
Reference in New Issue
Block a user