Skip to content

Commit 3870001

Browse files
committed
release: 1.0.0-beta.1
1 parent 1e8f514 commit 3870001

File tree

4 files changed

+7
-65
lines changed

4 files changed

+7
-65
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,8 @@ New Code:
110110
* **ionNavBar, ionView**: Remove `left-buttons`, `right-buttons`, `type`, `animation`,
111111
`back-button-*` attributes from ionNavBar. Remove `left-buttons`, `right-buttons` from ionView.
112112

113+
Additionally, all 'viewState.*' have been removed.
114+
113115
Relevant Documentation: [ionNavBar](http://ionicframework.com/docs/api/directive/ionNavBar),
114116
[ionView](http://ionicframework.com/docs/api/directive/ionView),
115117
[ionNavBackButton](http://ionicframework.com/docs/api/directive/ionNavBackButton) (new),

js/ext/angular/test/radioButton.html

Lines changed: 0 additions & 60 deletions
This file was deleted.

js/ext/angular/test/viewState.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -354,14 +354,14 @@ <h3>About this app!</h3>
354354
};
355355
})
356356

357-
.controller('AutoDetailCtrl', function($scope, $state, $stateParams) {
357+
.controller('AutoDetailCtrl', function($scope, $state, $stateParams, $ionicNavBarDelegate) {
358358
$scope.autoDetailData = "AutoDetailCtrl Data";
359359

360360
$scope.hideBackButton = function() {
361-
$scope.$emit('viewState.showBackButton', false);
361+
$ionicNavBarDelegate.showBackButton(false);
362362
};
363363
$scope.showBackButton = function() {
364-
$scope.$emit('viewState.showBackButton', true);
364+
$ionicNavBarDelegate.showBackButton(true);
365365
};
366366

367367
$scope.auto = $scope.autos[$stateParams.id];

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "ionic",
33
"private": false,
4-
"version": "0.9.27",
5-
"codename": "salamander",
4+
"version": "1.0.0-beta.1",
5+
"codename": "actinium",
66
"repository": {
77
"url": "git://github.com/driftyco/ionic.git"
88
},

0 commit comments

Comments
 (0)