Commit Graph

72 Commits

Author SHA1 Message Date
Andrew Joslin
49f06f9c3d fix(scrollView): make xy scrolling work on ionScroll and ionContent
Closes #1462
2014-05-21 13:13:29 -06:00
Andrew Joslin
cc46735c82 fix(ionReorderButton): fix onReorder not triggering angular digest 2014-05-20 08:59:34 -06:00
Andrew Joslin
90e7395e62 fix($ionicLoading): do not flicker when showing long loading messages
Closes #1252
2014-05-14 10:48:43 -06:00
Andrew Joslin
df9c0747c9 fix(listView): reordering up is more responsive, fix scrolling error
Closes #1202
2014-05-14 08:39:13 -06:00
Adam Bradley
aa15f8ed99 test(remove): Remove unused contentClick.html 2014-05-13 11:30:37 -05:00
Andrew Joslin
3c15b118ca fix(activator): properly activate elements nested inside an item.
Addresses #1373.

Before: if an `<a>`, `ng-click`, or `<button>` inside of a .item,
was clicked, the activator would walk up .item and activate it.

Now:  If an `<a>`, `ng-click`, or `<button>` inside of a
.item is clicked, the activator will activate that element.

Additionally, CSS was added so `a.item-content.activated` would look
activated.
2014-05-13 08:56:37 -06:00
Andrew Joslin
a006d89612 fix(ionCheckbox): make ng-checked and ng-change work
Closes #1349. Closes #1361

BREAKING CHANGE: ion-checkbox no longer has an isolate scope.

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

Change your code from this:

```html
<ion-checkbox ng-disabled="{{$parent.isDisabled}}"></ion-checkbox>
```

To this:

```html
<ion-checkbox ng-disabled="{{isDisabled}}"></ion-checkbox>
```
2014-05-13 07:19:02 -06:00
Adam Bradley
addf75a011 test(input): Update input test for pointer events 2014-05-12 15:13:44 -05:00
Max Lynch
73d2eabc69 feat(animation): Javascript Animation Service 2014-05-12 13:07:58 -05:00
Max Lynch
da00f72ca3 Shouldn't have been in there 2014-05-12 13:06:42 -05:00
Adam Bradley
5f2fdfdd07 fix(textarea): Allow scroll in textarea when focused
Closes #1280
2014-05-09 12:05:45 -05:00
Andy Joslin
203734d216 style(ionRefresher): add padding-top if refreshing-text or pulling-text
Fixes #1269
2014-05-05 12:46:13 -06:00
Andy Joslin
fc8711c7d0 feat($ionicLoading): on android, no back button action while loading
Fixes #1273
2014-05-05 12:15:32 -06:00
Adam Bradley
6b3c2b929a merge keyboard-fixes 2014-05-03 22:30:21 -05:00
Adam Bradley
d2ebed847e fix(modal): Remove modal flicker, closes #1150 2014-05-02 11:49:16 -05:00
Adam Bradley
5f8e9040bd fix(viewport): Auto update viewport tag 2014-05-02 10:12:48 -05:00
Max Lynch
cbf0172a0e Some progress on pause/play 2014-05-02 07:56:45 -06:00
Max Lynch
8be4b1f8ae Repeat and infinite 2014-05-02 07:56:45 -06:00
Max Lynch
6403f70bae Reverse animation support 2014-05-02 07:56:45 -06:00
Max Lynch
2872cf603e Support slowing animations (for debugging) 2014-05-02 07:56:44 -06:00
Max Lynch
4bea189a11 Support for delay 2014-05-02 07:56:44 -06:00
Max Lynch
8aea777dd7 Expanded test and callback system 2014-05-02 07:56:44 -06:00
Max Lynch
9c43dda4e5 More timing functions 2014-05-02 07:56:44 -06:00
Max Lynch
0b47d80f90 Very rough early stuff 2014-05-02 07:56:44 -06:00
Adam Bradley
f831dc3cc7 feature(toggle): Customize toggle directive colors, closes #1250 2014-05-01 13:25:31 -05:00
Andy Joslin
288d4ac230 fix(ionTab): make it so tabNav works with ngRepeat 2014-04-30 08:46:07 -06:00
Max Lynch
72043d2eef Added xy scroll test 2014-04-29 17:11:38 -05:00
Andy Joslin
3e5b39f201 feat($ionicActionSheet): allow html binding
Closes #1219
2014-04-29 10:35:35 -06:00
Andy Joslin
7fd31b6aed fix(ionHeaderBar): have no side effects with content in other views
Closes #1095
2014-04-29 09:18:56 -06:00
Andy Joslin
d56987cf04 demos: update to nightly, add back test page 2014-04-28 14:46:30 -06:00
Adam Bradley
3bf1cd3496 .item-select select max-width: 65% 2014-04-28 13:25:11 -05:00
Adam Bradley
f4745c3689 enable/disable toggle pointer-events w/ css only, closes #1185 2014-04-28 12:37:44 -05:00
Andy Joslin
81676e6ef7 fix(ionList): disable swiping of items while option buttons are shown
Addresses #1202
2014-04-25 07:05:28 -06:00
Andy Joslin
634b3971b1 fix(ionList): disable tap on element being edited
Addresses #1202
2014-04-25 07:05:28 -06:00
Andy Joslin
90da2da66f fix(ionList): make reorder position work if list is offset
Addresses #1202
2014-04-25 07:05:27 -06:00
Adam Bradley
ae3318a081 refactor(keyboard): Scroll to inputs hidden by keyboard 2014-04-24 20:22:16 -05:00
Andy Joslin
e5e5b911f7 collection-repeat: enable grid functionality 2014-04-24 07:32:31 -06:00
Andy Joslin
37d956371f test(list-fit): update styles 2014-04-23 17:52:51 -06:00
Andy Joslin
934158baf5 virtualScroll: non-full-featured version, to start testing 2014-04-23 17:52:51 -06:00
Adam Bradley
aac1d1773f Merge branch 'tap-refactor' 2014-04-17 15:23:58 -05:00
Max Lynch
f7b25aa9fa Fixed infinite scroll issues 2014-04-17 12:41:22 -05:00
Adam Bradley
ee1c8dc8b7 tap updates for select elements 2014-04-17 11:07:14 -05:00
Adam Bradley
c830475406 bring back $ionicNgClick, but without having to use ionic tap 2014-04-17 09:20:17 -05:00
Adam Bradley
d0047cda44 refactor(tap): Refactor tap system for improved tap/click/keyboard/scroll/focus
Overhaul of the tap system so the keyboard does not cover up focused
inputs, correctly bring up the keyboard on text input focus, disabling
focus during scroll, disabling clicks after a hold then scroll,
removing 300ms delay without additional event handlers on each element,
etc. Refactored the tap/click/scroll/activator events for more
testability, along with adding more tests.
2014-04-17 08:26:25 -05:00
Andy Joslin
4216266f21 fix(loading): fix not hiding after two shows, always cancel delay
Fixes #1130
2014-04-14 13:39:48 -06:00
Andy Joslin
14a2790749 refactor(): reorganize source files 2014-04-14 10:47:27 -06:00
Adam Bradley
b654e02e0a fix(header): Header input too long on Android 4.2, closes #1081 2014-04-08 15:22:54 -05:00
Adam Bradley
6a1ac355a8 refactor(item): Adjust item padding variables, create item-avatar-right 2014-04-08 11:50:50 -05:00
Adam Bradley
c7e3defca5 refactor(item): Create .icon-accessory and remove auto nav icons, closes #1061
BREAKING CHANGE: The developer should be stating exactly how an icon
should show, but previously the right nav arrow icon violates this by
automatically showing a right arrow when an item was an anchor or
button. Instead of using the `:after` item selector, which was always
applied by default, it uses the same markup as `item-icon-right`, which
is easier to understand, customizable and not a hard coded default.

This change removes the `:after` nav icon styling, and creates a new
class, `icon-accessory`, based off of similar CSS. The change makes a
nav arrow highly customizable, allows RTL developers to easily control
the arrow direction, and the accessory class is something that's
reusable.

An example of right side arrow using `ion-chevron-right` as the icon:

    <a class="item item-icon-right" href="#">
      Check mail
      <i class="icon ion-chevron-right icon-accessory"></i>
    </a>
2014-04-07 15:33:36 -05:00
Adam Bradley
cf686548da fix(tap): Remove 300ms delay when tapping select elements 2014-04-05 23:43:12 -05:00