Skip to content
This repository was archived by the owner on Jun 26, 2020. It is now read-only.

Commit 97ba234

Browse files
committed
chore(release): update ionic to v0.9.25
1 parent c772a13 commit 97ba234

15 files changed

+3354
-2764
lines changed

www/lib/css/ionic.css

Lines changed: 21 additions & 12 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, v0.9.24
5+
* Ionic, v0.9.25
66
* A powerful HTML5 mobile app framework.
77
* http://ionicframework.com/
88
*
@@ -2183,7 +2183,10 @@ infinite-scroll.active .scroll-infinite {
21832183

21842184
.pane {
21852185
position: absolute;
2186-
z-index: 1; }
2186+
z-index: 1;
2187+
-webkit-transform: translate3d(0, 0, 0);
2188+
-moz-transform: translate3d(0, 0, 0);
2189+
transform: translate3d(0, 0, 0); }
21872190

21882191
.view {
21892192
position: absolute;
@@ -2196,10 +2199,7 @@ infinite-scroll.active .scroll-infinite {
21962199
left: 0;
21972200
width: 100%;
21982201
height: 100%;
2199-
background-color: #fff;
2200-
-webkit-transform: translate3d(0, 0, 0);
2201-
-moz-transform: translate3d(0, 0, 0);
2202-
transform: translate3d(0, 0, 0); }
2202+
background-color: #fff; }
22032203

22042204
/**
22052205
* Typography
@@ -2227,7 +2227,7 @@ h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
22272227
color: #000;
22282228
font-weight: 500;
22292229
font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
2230-
line-height: 1.1; }
2230+
line-height: 1.2; }
22312231
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small {
22322232
font-weight: normal;
22332233
line-height: 1; }
@@ -2486,6 +2486,9 @@ a.subdued {
24862486
display: -moz-flex;
24872487
display: -ms-flexbox;
24882488
display: flex;
2489+
-webkit-transform: translate3d(0, 0, 0);
2490+
-moz-transform: translate3d(0, 0, 0);
2491+
transform: translate3d(0, 0, 0);
24892492
-webkit-user-select: none;
24902493
-moz-user-select: none;
24912494
-ms-user-select: none;
@@ -2879,6 +2882,9 @@ a.subdued {
28792882
-webkit-justify-content: center;
28802883
-moz-justify-content: center;
28812884
justify-content: center;
2885+
-webkit-transform: translate3d(0, 0, 0);
2886+
-moz-transform: translate3d(0, 0, 0);
2887+
transform: translate3d(0, 0, 0);
28822888
background-color: #f8f8f8;
28832889
background-image: linear-gradient(0deg, #b2b2b2, #b2b2b2 50%, transparent 50%);
28842890
border-color: #b2b2b2;
@@ -4474,6 +4480,13 @@ input[type="range"] {
44744480
background-color: #e5e5e5;
44754481
box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.15);
44764482
border-color: #a2a2a2; }
4483+
.button:after {
4484+
position: absolute;
4485+
top: -6px;
4486+
right: -8px;
4487+
bottom: -6px;
4488+
left: -8px;
4489+
content: ' '; }
44774490
.button .icon {
44784491
vertical-align: top; }
44794492
.button .icon:before, .button.icon:before, .button.icon-left:before, .button.icon-right:before {
@@ -4816,11 +4829,7 @@ input[type="range"] {
48164829
display: block;
48174830
clear: both; }
48184831
.button-block:after {
4819-
display: block;
4820-
visibility: hidden;
4821-
clear: both;
4822-
height: 0;
4823-
content: "."; }
4832+
clear: both; }
48244833

48254834
.button-full, .button-full > .button {
48264835
display: block;

www/lib/css/ionic.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

www/lib/js/angular/angular-animate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.2.10
2+
* @license AngularJS v1.2.12
33
* (c) 2010-2014 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/

www/lib/js/angular/angular-animate.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

www/lib/js/angular/angular-resource.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.2.10
2+
* @license AngularJS v1.2.12
33
* (c) 2010-2014 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -40,7 +40,7 @@ function shallowClearAndCopy(src, dst) {
4040
});
4141

4242
for (var key in src) {
43-
if (src.hasOwnProperty(key) && key.charAt(0) !== '$' && key.charAt(1) !== '$') {
43+
if (src.hasOwnProperty(key) && !(key.charAt(0) === '$' && key.charAt(1) === '$')) {
4444
dst[key] = src[key];
4545
}
4646
}
@@ -392,7 +392,9 @@ angular.module('ngResource', ['ng']).
392392
val = params.hasOwnProperty(urlParam) ? params[urlParam] : self.defaults[urlParam];
393393
if (angular.isDefined(val) && val !== null) {
394394
encodedVal = encodeUriSegment(val);
395-
url = url.replace(new RegExp(":" + urlParam + "(\\W|$)", "g"), encodedVal + "$1");
395+
url = url.replace(new RegExp(":" + urlParam + "(\\W|$)", "g"), function(match, p1) {
396+
return encodedVal + p1;
397+
});
396398
} else {
397399
url = url.replace(new RegExp("(\/?):" + urlParam + "(\\W|$)", "g"), function(match,
398400
leadingSlashes, tail) {

www/lib/js/angular/angular-resource.min.js

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

0 commit comments

Comments
 (0)