Commit Graph

86 Commits

Author SHA1 Message Date
Andrew
c482d477af refactor(collectionRepeatDataSource): remove accidental test variable 2014-07-07 11:47:13 -06:00
MGMsystems
ba56bb983f feat(ionSideMenu): add edge-drag-threshold, delegate edgeDragThreshold()
Closes #1570
2014-07-06 14:22:26 -06:00
Perry Govier
7630bd419f fix(loading): Prevent clicks on modal views when loading is active. Closes #1720 2014-07-03 16:16:21 -05:00
Perry Govier
19c40986af chore(jshint): clearing semicolon warnings 2014-07-02 14:08:18 -05:00
Perry Govier
3e6ce1831b fix(popup): if popup is taller than the window, shrink the popup body and make it scrollable. Closes #1679 2014-06-27 11:27:06 -05:00
Andrew Joslin
b2585f19ca fix(collectionRepeat): fix scroll when item bigger than viewport
Closes #1621
2014-06-17 17:42:10 +00:00
arturokunder
c6fb60cd68 Update actionSheet.js
fixed a typo at the params description
2014-06-17 09:54:00 -04:00
ohh2ahh
a0b61e0c2c docs(actionSheet): correct show() method example 2014-06-14 16:20:55 -05:00
Max Lynch
0e647e77af Holding off on platform tweaks just yet 2014-06-12 13:29:01 -05:00
Andrew Joslin
e4ab045e30 feat($ionicSlideBoxDelegate): add start() to resume after stop
Closes #1584
2014-06-12 09:02:35 -06:00
Max Lynch
c30be67f65 feat(platforms): Android and iOS Specific Styles and Transitions 2014-06-11 16:48:53 -05:00
Andrew Joslin
e2ec0bfffe amend($ionicActionSheet): remove unused line of code 2014-06-11 11:33:56 -06:00
Andrew Joslin
087e55f320 feat($ionicActionSheet): add cancelOnStateChange option, default true
Closes #1318

BREAKING CHANGE: $ionicActionSheet's default behavior is now to cancel
when the app's state changes.  To disable this behavior, pass
`cancelOnStateChange: false` into $ionicActionSheet.show().
2014-06-11 11:28:53 -06:00
Andrew Joslin
30a3c8e0c8 fix(collectionRepeat): remove elements at correct time when leaving page 2014-06-11 08:43:00 -06:00
Andrew Joslin
6af5d68da4 feat(collectionRepeat): huge optimization upgrades
Closes #1597
2014-06-10 17:56:35 -06:00
Andrew Joslin
64f847aac7 docs($ionicModal): typo 2014-06-10 12:57:39 -06:00
Andrew Joslin
288dfedca3 docs($ionicModal): remove unnecessary sentence 2014-06-10 12:55:01 -06:00
Andrew Joslin
13853b68b7 docs($ionicModal: add colon 2014-06-10 12:54:37 -06:00
Andrew Joslin
12765cea47 docs($ionicModal): add related link to ionicModal controller at top 2014-06-10 12:54:03 -06:00
Andrew Joslin
b2caa16c77 docs(modal): add note about modal.removed,hidden,shown in $ionicModal 2014-06-10 12:51:36 -06:00
Andrew Joslin
b7646a5630 fix($ionicActionSheet): stop memory leak due to hidden element staying in dom
BREAKING CHANGE: $ionicActionSheet now returns a method to hide the
action sheet.

Previously, it returned an object that had a `show` and `hide` method.
This was undocumented, but if you used it, here is how to migrate your
code:

Change your code from this:

```js
var sheet = $ionicActionSheet.show({...});
sheet.hide();
```

To this:

```js
var hideSheet = $ionicActionSheet.show({...});
hideSheet();
```
2014-06-06 13:45:38 -04:00
hallucynogenyc
323e2ce22d fix($ionicActionSheet): fix problems with cancel() not being called
Closes #1013, #1576.
2014-06-06 13:22:13 -04:00
Andrew Joslin
9942045fb2 amend($ionicModal): if hardwareBackButtonClose false, back button is noop
Addresses #1397
2014-06-05 07:29:39 -06:00
Andrew Joslin
9ffca1e4eb feat($ionicModal): add hardwareBackButtonClose as option, default true
Closes #1397
2014-06-04 13:45:21 -06:00
Kevin Wade
74a4612210 fix(collectionRepeat): use $rootScope when checking if digest is needed
Closes #1518
2014-06-04 11:37:31 -06:00
Adam Bradley
71efd51bff fix(popup): focus on first input
Closes #822
2014-06-02 22:35:33 -05:00
tyschroed
17ee4dffde docs(modal): add missing tic causing backdropClickToClose to not format properly. Closes #1533 2014-05-30 17:36:39 -05:00
Perry Govier
11838cad40 docs(popup): fix a formatting in the example code
Adding the proper amount of spaces
2014-05-30 11:17:09 -05:00
Perry Govier
5398e9a0a3 docs(popup): fix a typo in the example code
The example was missing a `}` and therefore the other examples wouldn't work until the first was clicked since their definition was part of the first's execution.
2014-05-30 11:07:14 -05:00
Cihan Necat KAVİ
4136db00a1 fix(ionItem): Pass target attributes on <ion-item> tags on to the actual <a> tag. Closes #1492 2014-05-28 16:42:04 -05:00
Andrew Joslin
75e30003a8 chore(): move demos out of source files 2014-05-27 11:21:08 -06:00
Misha Moroshko
3e8287156d docs(modal): fix templateUrl
Closes #1478
2014-05-23 05:54:02 -06:00
Max Lynch
003659b65e fix(modal): error message for modal show after remove 2014-05-22 14:02:03 -05:00
Andrew Joslin
c340951b48 demo($ionicActionSheet): add demo 2014-05-22 11:41:28 -06:00
Andrew Joslin
dcebf9be02 demos(): add demos for sideMenu and popup 2014-05-22 11:22:32 -06:00
Max Lynch
bfce8e2769 fix(loading): backdrop higher z-index 2014-05-22 10:59:47 -05:00
Max Lynch
4c700e9c0f fix(backdrop): Changed z-index for loading backdrop only. Fixes #1428 2014-05-22 10:43:52 -05:00
Andrew Joslin
94f0b5b705 fix(collectionRepeat): fix rare NPE error on android 4.1
Closes #1292
2014-05-21 07:44:21 -06:00
Andrew Joslin
74e002d8e3 demo($ionicLoading): add basic demo 2014-05-20 10:56:22 -06:00
mrzmyr
c3470ef529 docs($ionicLoading): add default values
Closes #1431
2014-05-19 06:22:28 -06:00
mrzmyr
830ec44753 docs(): add default values 2014-05-19 05:56:27 -06:00
Andrew Joslin
55e910d2e9 chore(demos): start ionic-demo page 2014-05-16 15:05:13 -06:00
Andrew Joslin
fece132622 style(animations): fix jshint errors 2014-05-14 11:15:18 -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
Felquis Gimenes
67ea34ae1d docs($ionicModal): clearly note that .modal wrapper is required
Closes #1384.

Just to avoid mistakes/questions like this http://forum.ionicframework.com/t/ionic-modal-not-animating/4196
2014-05-14 09:01:27 -06:00
Pavel Strashkin
e0c7979aa5 feat ($ionicActionSheet): pass button object to buttonClicked
Closes #1369.

Right now `buttonClicked` accepts only the index of the pressed button that means you have to work with indices to decide which one it is. In case you move buttons around to get better UX, you'd have to be very careful with those indices. It's easier to add `id` property to buttons and simply check for it. Index-agnostic solution is more maintainable and leads to less changes to the code when the buttons order is being changed.
2014-05-13 10:57:13 -06: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
Maks Rafalko
3fede13c94 docs($ionicSlideBox): fix typo 2014-05-12 08:40:31 -06:00
Andrew Joslin
291d723ab1 feat($ionicModal): allow configuration of backdropClickToClose
Addresses #1087
2014-05-12 08:24:19 -06:00