Skip to content

Commit

Permalink
v0.5.0-beta.2
Browse files Browse the repository at this point in the history
  • Loading branch information
boennemann committed Feb 28, 2014
1 parent 59b5630 commit 110c861
Show file tree
Hide file tree
Showing 7 changed files with 161 additions and 100 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
<a name="0.5.0-beta.2"></a>
### 0.5.0-beta.2 (2014-02-28)


#### Bug Fixes

* use controllers instead of scope ([95578fa0](http://github.com/excellenteasy/bradypodion/commit/95578fa0c9916559d94e4fa44a7932c5db44ff9a))
* **navbar:** do not expose private helpers to scope, no isolate ([fb166e14](http://github.com/excellenteasy/bradypodion/commit/fb166e14945e3b6106a9252111c820bf839fb0c6))
* **navigation:**
* only animate on slide ([5f84f60f](http://github.com/excellenteasy/bradypodion/commit/5f84f60f7695b8b5e1f1d677ecfb344322d7794b))
* do not leak memory w/ configs ([86289cc5](http://github.com/excellenteasy/bradypodion/commit/86289cc560e821a1538e6cc0a6d841f8ffd74a13))
* do not expose configs to scope ([1604d9bb](http://github.com/excellenteasy/bradypodion/commit/1604d9bb06ea0cdccac14f3bf7632ff4024af116))
* compile injected navbar against view scope ([8429e967](http://github.com/excellenteasy/bradypodion/commit/8429e9677718e08c3bcca1fe158f33a2e4a35814))
* **scale:** look more like android ([ebd9ea5b](http://github.com/excellenteasy/bradypodion/commit/ebd9ea5bb4fdae88b5a03cc2f613ba78f55aa3a5))
* **scroll:** fix scroll w/table ([59b5630b](http://github.com/excellenteasy/bradypodion/commit/59b5630bcfc5d86dcf0b5b39d0477516db2d400a))
* **table:** prevent margin collapse in grouped ([3f825b40](http://github.com/excellenteasy/bradypodion/commit/3f825b40e27dca941cbeb2a8e4592b05c5c176eb))


#### Features

* **navbar:** support state params for up button ([65e08083](http://github.com/excellenteasy/bradypodion/commit/65e0808379f9def82c4a70d4bc91df22d0af06a2))
* **sref:**
* extract parseSref in service ([d19ed574](http://github.com/excellenteasy/bradypodion/commit/d19ed574a3e5affd05f8c6a1c1c8f999c890ed9d))
* allow ui-router style param definition ([1106fd9c](http://github.com/excellenteasy/bradypodion/commit/1106fd9c3cfc62f12a4e31162e0bd99dc8faf3ac))
* **view:** platform specific transition defaults ([27e879cc](http://github.com/excellenteasy/bradypodion/commit/27e879cc93700072c511e13b2bf9af3f48cc8da5))


<a name="0.5.0-beta.1"></a>
### 0.5.0-beta.1 (2014-02-25)

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "bradypodion",
"description": "Create post-platform mobile apps with ease",
"license": "MIT",
"version": "0.5.0-beta.1",
"version": "0.5.0-beta.2",
"dependencies": {
"angular": "1.2.13",
"angular-animate": "1.2.13",
Expand Down
10 changes: 5 additions & 5 deletions dist/bradypodion-iscroll.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/*!
* Bradypodion v0.5.0-beta.1
* Bradypodion v0.5.0-beta.2
* http://bradypodion.io/
*
* Copyright 2013, 2014 excellenteasy GbR, Stephan Bönnemann und David Pfahler
* Released under the MIT license.
*
* Date: 2014-02-25T12:08:54
* Date: 2014-02-28T23:30:36
*/
(function () {
'use strict';
Expand All @@ -28,13 +28,13 @@
$scope.getIScrollSticky = function () {
return iscrollsticky;
};
$scope.setIScroll = function (inIscroll, inSticky) {
this.setIScroll = function (inIscroll, inSticky) {
iscroll = inIscroll;
iscrollsticky = inSticky;
};
}
],
link: function (scope, element, attrs) {
link: function (scope, element, attrs, ctrl) {
var options;
options = angular.extend({
probeType: 3,
Expand All @@ -47,7 +47,7 @@
var selector = attrs.bpIscrollSticky || 'bp-table-header';
iscs = new IScrollSticky(isc, selector);
}
scope.setIScroll(isc, iscs);
ctrl.setIScroll(isc, iscs);
}, 0);
element.on('$destroy', function () {
scope.getIScroll().destroy();
Expand Down
41 changes: 26 additions & 15 deletions dist/bradypodion.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/*!
* Bradypodion v0.5.0-beta.1
* Bradypodion v0.5.0-beta.2
* http://bradypodion.io/
*
* Copyright 2013, 2014 excellenteasy GbR, Stephan Bönnemann und David Pfahler
* Released under the MIT license.
*
* Date: 2014-02-25T12:08:53
* Date: 2014-02-28T23:30:34
*/
.bp-fullsize,
html,
Expand Down Expand Up @@ -421,48 +421,56 @@ lesshat-selector {
transform: translateX(50%);
}
.scale-normal.ng-enter {
-webkit-transition: all 0.3s ease-in;
transition: all 0.3s ease-in;
-webkit-transform: scale(0);
transform: scale(0);
-webkit-transition: all 0.1s ease-in;
transition: all 0.1s ease-in;
-webkit-transform: scale(0.9);
transform: scale(0.9);
opacity: 0;
z-index: 1000;
}
.scale-normal.ng-enter.ng-enter-active {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
.scale-normal.ng-leave {
-webkit-transition: all 0.3s ease-in;
transition: all 0.3s ease-in;
-webkit-transition: all 0.1s ease-in;
transition: all 0.1s ease-in;
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
z-index: inherit;
}
.scale-normal.ng-leave.ng-leave-active {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
.scale-reverse.ng-enter {
-webkit-transition: all 0.3s ease-in;
transition: all 0.3s ease-in;
-webkit-transition: all 0.1s ease-in;
transition: all 0.1s ease-in;
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
z-index: inherit;
}
.scale-reverse.ng-enter.ng-enter-active {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
.scale-reverse.ng-leave {
-webkit-transition: all 0.3s ease-in;
transition: all 0.3s ease-in;
-webkit-transition: all 0.1s ease-in;
transition: all 0.1s ease-in;
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
z-index: 1000;
}
.scale-reverse.ng-leave.ng-leave-active {
-webkit-transform: scale(0);
transform: scale(0);
-webkit-transform: scale(0.9);
transform: scale(0.9);
opacity: 0;
}
lesshat-selector {
-lh-property: 0; }
Expand Down Expand Up @@ -1091,7 +1099,7 @@ bp-navbar {
bp-scroll,
[bp-scroll] {
-webkit-box-flex: 1;
overflow: scroll;
overflow: scroll !important;
-webkit-overflow-scrolling: touch;
}
bp-scroll[bp-scroll-sticky] bp-table-header,
Expand Down Expand Up @@ -1402,6 +1410,9 @@ bp-table {
margin: 0;
padding: 0;
}
.ios bp-table {
overflow: hidden;
}
.ios bp-table.bp-table-grouped {
background-color: #e5e5e5;
}
Expand Down
Loading

0 comments on commit 110c861

Please sign in to comment.