Skip to content

Commit 4d3e223

Browse files
committed
release: v1.0.0-beta.8 "einsteinium-emu"
1 parent 2d587a8 commit 4d3e223

16 files changed

+611
-84
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
### 1.0.0-beta.8 "einsteinium-emu" (2014-06-16)
2+
3+
4+
#### Bug Fixes
5+
6+
* **cancelAnimationFrame:** polyfill in ionic.DomUtil ([a0577346](https://github.com/driftyco/ionic/commit/a057734631ccdb2d81ec3e67c3172a87445102c5))
7+
* **content:** scroll=false in sidemenu hides content ([53c17104](https://github.com/driftyco/ionic/commit/53c171043eca5ca360a0db6c2ec9f8de118c061a), closes [#1485](https://github.com/driftyco/ionic/issues/1485))
8+
* **css:** reset FirefoxOS default gradients ([5f1ea5f6](https://github.com/driftyco/ionic/commit/5f1ea5f6326d9851dbddbee7fde164fe6c456427), closes [#1426](https://github.com/driftyco/ionic/issues/1426))
9+
* **headerBarView:** check for null in getTextBounds ([be351ce1](https://github.com/driftyco/ionic/commit/be351ce1face2c69c68a4eda2418e57998b3e3fa), closes [#1377](https://github.com/driftyco/ionic/issues/1377))
10+
* **tap:** error when releasing outside of browser ([8da9f34b](https://github.com/driftyco/ionic/commit/8da9f34ba27a16c629e9373e8d4120adb52a09de), closes [#1612](https://github.com/driftyco/ionic/issues/1612))
11+
12+
13+
#### Features
14+
15+
* **ionicons:**
16+
* v1.5.2 upgrade w/ :before pseudo ([17ee672f](https://github.com/driftyco/ionic/commit/17ee672fa3d967bdbd449157951d5fe0441ee66e))
17+
* upgrade to Ionicons v1.5.1 ([191428a4](https://github.com/driftyco/ionic/commit/191428a49541307a6e54f9bca60b992638460623))
18+
19+
120
<a name="1.0.0-beta.7"></a>
221
### 1.0.0-beta.7 "einsteinium-emu" (2014-06-12)
322

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ionic",
3-
"version": "1.0.0-beta.7",
3+
"version": "1.0.0-beta.8",
44
"codename": "einsteinium-emu",
55
"homepage": "https://github.com/driftyco/ionic",
66
"authors": [

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"repo": "driftyco/ionic",
33
"development": {},
4-
"version": "1.0.0-beta.7",
4+
"version": "1.0.0-beta.8",
55
"styles": [
66
"dist/css/ionic.css"
77
],

release/css/ionic.css

Lines changed: 240 additions & 6 deletions
Large diffs are not rendered by default.

release/css/ionic.min.css

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

release/fonts/ionicons.eot

15.4 KB
Binary file not shown.

release/fonts/ionicons.svg

Lines changed: 298 additions & 22 deletions
Loading

release/fonts/ionicons.ttf

24.3 KB
Binary file not shown.

release/fonts/ionicons.woff

8.69 KB
Binary file not shown.

release/js/ionic-angular.js

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Copyright 2014 Drifty Co.
33
* http://drifty.com/
44
*
5-
* Ionic, v1.0.0-beta.7
5+
* Ionic, v1.0.0-beta.8
66
* A powerful HTML5 mobile app framework.
77
* http://ionicframework.com/
88
*
@@ -91,10 +91,10 @@ var IonicModule = angular.module('ionic', ['ngAnimate', 'ngSanitize', 'ui.router
9191
* $scope.show = function() {
9292
*
9393
* // Show the action sheet
94-
* var hideSheet = $ionicActionSheet({
94+
* var hideSheet = $ionicActionSheet.show({
9595
* buttons: [
9696
* { text: '<b>Share</b> This' },
97-
* { text: 'Move' },
97+
* { text: 'Move' }
9898
* ],
9999
* destructiveText: 'Delete',
100100
* titleText: 'Modify your album',
@@ -4626,6 +4626,8 @@ function($timeout, $controller, $ionicBind) {
46264626
innerElement = jqLite('<div class="scroll"></div>');
46274627
innerElement.append(element.contents());
46284628
element.append(innerElement);
4629+
} else {
4630+
element.addClass('scroll-content-false');
46294631
}
46304632

46314633
return { pre: prelink };
@@ -5419,11 +5421,9 @@ IonicModule
54195421
if ( !input || !inputLabel ) return;
54205422

54215423
var onInput = function() {
5422-
var hasInput = inputLabel.classList.contains('has-input');
5423-
if ( input.value && !hasInput ) {
5424+
if ( input.value ) {
54245425
inputLabel.classList.add('has-input');
5425-
}
5426-
else if ( !input.value && hasInput ) {
5426+
} else {
54275427
inputLabel.classList.remove('has-input');
54285428
}
54295429
};
@@ -5434,8 +5434,6 @@ IonicModule
54345434
if ( ngModelCtrl ) {
54355435
ngModelCtrl.$render = function() {
54365436
input.value = ngModelCtrl.$viewValue || '';
5437-
if ( ngModelCtrl.$viewValue ) input.value = ngModelCtrl.$viewValue;
5438-
else input.value = '';
54395437
onInput();
54405438
};
54415439
}

0 commit comments

Comments
 (0)