Commit Graph

146 Commits

Author SHA1 Message Date
Adam Bradley
2dce7a74f7 fix(gesture): fix onSwipeDown
Closes #1810
2014-07-22 12:43:58 -05:00
Perry Govier
81a7342fc7 fix(slidebox): default to not autoplay 2014-07-11 17:11:52 -05:00
Andrew
537b29d0bb fix(toggle): fix ngChange being reported before model changes
Closes #1349, #1741

BREAKING CHANGE:

ion-toggle no longer has an isolate scope.
This will break your toggle only if you were relying upon the toggle
having an isolate scope: if you were referencing `$parent.value` as
the ng-disabled attribute, for example.

Change your code from this:

<ion-toggle ng-disabled="{{$parent.isDisabled}}"></ion-toggle>

To this:

<ion-toggle ng-disabled="{{isDisabled}}"></ion-toggle>
2014-07-10 23:51:55 -06:00
Andrew
3dea57d8fb docs(navBackButton): clarify custom back button action 2014-07-10 23:51:55 -06:00
Perry Govier
bb6976ad54 feat(tab): options 'hidden' attribute for tabs. Closes #1666, #1673 2014-07-09 17:10:43 -05:00
Andrew
208ef13d54 fix(collectionRepeat): patch ngSrc/ngHref to fix a bug with falsy values
Fixes #1674
2014-07-08 15:27:41 -06:00
Andrew
b1bcece8d1 refactor(list): remove extra class 2014-07-08 11:37:44 -06:00
Andrew
4f10a72306 fix(list): make reorder/delete button animation work well on all devices 2014-07-08 11:32:43 -06:00
Perry Govier
a2fe834a61 docs(content): mention has-bouncing attribute. Closes #1737 2014-07-07 15:30:51 -05:00
Andrew
ed4f22889e feat(ionModalView): ion-modal-view to wrap template instead of <div class="modal">
Closes #1668.

`<div class="modal">` will still work, but adding an `<ion-modal-view>`
element to wrap a modal template is a more "Ionic Looking" way of doing
the same thing.
2014-07-07 13:43:12 -06:00
Andrew
b7f45e7ca5 fix(view): don't affect history when inside a modal
Closes #1667
2014-07-07 13:38:28 -06:00
Joilson Marques
8f8086092f feat(ionSlideBox): add 'auto-play' attr to optionally disable auto-play
Closes #1552
2014-07-07 13:14:58 -06:00
Andrew
2e9d0965a5 fix(ionList): allow scrolling while reorder or delete is active
Closes #1703
2014-07-07 13:03:52 -06:00
Andrew
d5d38bb081 refactor(collectionRepeat): add a require-able controller to the directive 2014-07-07 11:48:44 -06:00
Andrew
cdba48f196 fix(navBar): only add default animation if there is no custom animation
Closes #1671
2014-07-07 11:40:21 -06:00
MGMsystems
ba56bb983f feat(ionSideMenu): add edge-drag-threshold, delegate edgeDragThreshold()
Closes #1570
2014-07-06 14:22:26 -06:00
Andrew
ba1859b308 fix(ionReorderButton): stop ngRepeat:dupes error when reordering
Closes #1601.

BREAKING CHANGE: Reordering with ion-reorder-button no longer changes the order of the items in the DOM.

This change will only break your list if you were not using the
onReorder callback as described in the documentation.

Before, while reordering an element in a list Ionic would swap the
elements underneath as the reordering happened.  This sometimes caused
errors with angular's ngRepeat directive.

Now, reordering an element in a list does not change the order of
elements in the DOM.  It is expected that the end developer will use the
index changes given in the `onReorder` callback to reorder the items
in the list. This is simple to do, see the [examples in the
ionReorderButton
documentation](http://ionicframework.com/docs/api/directive/ionReorderButton/).
2014-07-06 13:39:56 -06:00
townside
c2dbb31856 docs(headerFooter): Typo 2014-07-03 14:13:26 -05:00
Perry Govier
1b51231e8f docs(collectionRepeat): Noting that the dimensions must be known ahead of item creation. Closes #1707 2014-07-01 10:12:57 -05:00
FabianSperrle
9f7960c98b docs(navBar): Corrected typo 2014-06-30 13:40:36 -05:00
Perry Govier
704fe402e7 fix(radio): suport ng-disabled. Closes #1684 2014-06-27 15:58:17 -05:00
Max Lynch
6eefee3d7e fix(headerBar): scroll to top 2014-06-23 15:02:06 -05:00
Perry Govier
501282fd42 docs(content): add start-y parameter to ion-content documentation. Closes #1324
Here's an example http://codepen.io/perrygovier/pen/GEIwc
2014-06-19 17:59:44 -05:00
Andrew Joslin
b4b94073d5 fix(gestureDirectives): fix problem with event being passed in 2014-06-17 13:16:31 +00:00
Adam Bradley
731cf726a9 test(floatingLabel): snapshot tests 2014-06-13 09:36:14 -05:00
Adam Bradley
53c171043e fix(content): scroll=false in sidemenu hides content
Closes #1485
2014-06-12 21:38:54 -05:00
Ionitron
0d27e0e537 amend(ionRadio): make sure value is passed down always 2014-06-12 15:32:49 -06:00
Ionitron
5fd5e009a6 fix(ionRadio): make value attribute work 2014-06-12 15:28:17 -06:00
Tim Lancina
050b4f25df feat(itemFloatingLabel): add floating labels: 'item-floating-label' class
Closes #1611
2014-06-12 14:58:28 -06:00
Max Lynch
1a7c1f1dc6 fix(headerBar): More accurate scroll-to-top detection 2014-06-12 13:48:32 -05:00
Adam Bradley
f0bafafec0 refactor(gesture): move eventType out of compile
eventType only needs to be set once per directive, not every compile.
2014-06-12 11:52:11 -05:00
Adam Bradley
90b4d34630 refactor(gestures): $event local and simplify init 2014-06-12 11:40:23 -05:00
Adam Bradley
a2dcaf13cc feat(gestures): added gesture directives
Closes #829
2014-06-12 10:49:07 -05:00
Andrew Joslin
bea69fe46c amend(platform-backButton): do not set icon if icon child exists 2014-06-12 09:23:30 -06:00
Aleksey Podskrebyshev
4831f48954 fix($ionNavView): prevent read property 'name' of null
Closes #1587
2014-06-12 08:25:12 -06:00
Andrew Joslin
cec3a42236 fix(ionNavBackButton): stop flicker when pressing back on ios 2014-06-11 16:07:38 -06:00
Max Lynch
c30be67f65 feat(platforms): Android and iOS Specific Styles and Transitions 2014-06-11 16:48:53 -05:00
Andrew Joslin
8476f0cb3a docs(collectionRepeat): update docs for optimizations 2014-06-11 15:34:11 -06:00
Andrew Joslin
a034561516 amend(ionTab): fix tests for class attribute 2014-06-11 08:49:17 -06:00
Julien Goux
e6f79cc0ff feat(ionTab): add class attribute to tab items 2014-06-11 08:36:36 -06:00
Andrew Joslin
6af5d68da4 feat(collectionRepeat): huge optimization upgrades
Closes #1597
2014-06-10 17:56:35 -06:00
Perry Govier
ead5e026b9 fix(radioButtons): Correcting a bug introduced by 521164db78. Closes #1599 2014-06-10 10:57:19 -05:00
Andrew Joslin
a5230749a7 docs(ionInfiniteScroll): improve explanation of infiniteScrollComplete event 2014-06-08 12:34:43 -04:00
Andrew Joslin
00c80e8557 feat(ionScroll): add has-bouncing=true/false attribute
Closes #1573. Closes #1367.
2014-06-04 14:14:31 -06:00
Andrew Joslin
f5f5851b2e fix(ionItem): make target attribute work properly
Closes #1521
2014-06-04 14:03:44 -06:00
Tim Lancina
6697e66f17 fix keyboard-attach docs 2014-06-04 10:41:53 -05:00
Max Lynch
66bfb71b82 Removed rider 2014-06-01 19:36:27 -05:00
Max Lynch
07fa80a815 Fixed a list item PR issue 2014-06-01 19:31:18 -05:00
17NuF432QCV2vF4fdqYPYMdCuK9jHVDSNG
ed797eb281 docs(moda): updaing the docs to reflect the proper modal.hidden event. Closes #1493 2014-05-28 16:28:06 -05:00
Perry Govier
4a4eb03011 Merge branch 'refs/heads/patch-1' 2014-05-28 10:35:13 -05:00