Max Lynch
66eb93bf87
Updated code pen link for popup docs
2014-03-14 09:37:47 -05:00
Adam Bradley
ba2a40c845
feat(modal): On larger displays modals will be inset and centered, not full width/height, closes #783
2014-03-13 22:14:30 -05:00
Max Lynch
a30b0b7d4f
feat(popup): Added popup support
2014-03-13 14:57:48 -05:00
Adam Bradley
cd1830898e
ionic.views.Modal.prototype.show was not being called
2014-03-12 14:36:57 -05:00
Andy Joslin
703f68fb0b
test(ionicView): update
2014-03-11 13:26:21 -06:00
Andy Joslin
e9625ded9d
docs: add services, utilities
2014-03-11 13:02:36 -06:00
Andy Joslin
68ddbdb439
docs(ionSlideView): add configurable model
2014-03-10 21:16:09 -06:00
Andy Joslin
22fe0e31fa
docs(ionActionSheet): cleanup
2014-03-10 21:16:08 -06:00
Adam Bradley
7d076bd55b
feat(modal): Create a modal backdrop wrapper w/ internal modal directive, closes #605
2014-03-10 22:14:55 -05:00
Adam Bradley
c4ca7a85e0
fix(modal): Fix removing modal from DOM on .remove(), closes #755
2014-03-10 14:42:50 -05:00
Andy Joslin
bcb5d1be21
docs($ionicActionSheet): write docs
2014-03-08 20:45:26 -07:00
Adam Bradley
a491f22c1f
fix(backbutton): Allow only one back button listener to run per click, closes #693
2014-03-06 15:16:49 -06:00
Adam Bradley
c99427aa92
fix(history): Separate histories and views, clear other views in clearHistory(), closes #724
2014-03-06 10:58:33 -06:00
Adam Bradley
44b31e1887
fix(actionsheet): Fix slide-up animation, closes #713
2014-03-05 16:07:59 -06:00
Adam Bradley
b593cf1be6
fix(modal): Improve slide-up/down animations, remove flickers
2014-03-04 16:44:24 -06:00
Andy Joslin
12f48bb90f
refactor(ionicTemplateLoader): make shorter and simpler
...
Closes #85
2014-02-26 08:52:56 -05:00
Andy Joslin
8354d42b4b
feat(ionNavAnimation): <a href="#/page" ion-nav-animation="slide-in-up">
2014-02-26 08:40:02 -05:00
Andy Joslin
b406305b19
refactor(ionicContent): use $-prefix for onRefresh and onScroll events
...
Closes #675
2014-02-25 11:18:25 -05:00
Andy Joslin
49e0dac999
feat(ionContent): use child scope instead of isolate scope
...
Adds new '$ionicBind' service, which takes an object containing
binding definitions (similar to angular directive isolate scope
definition). Allows binding of any directive attribute & expressions
from a scope, letting us do normal attribute -> scope binding
without having to create isolate scopes.
Closes #555 . Closes #669
2014-02-24 11:11:03 -05:00
Adam Bradley
1503cc7213
fix(actionsheet): Actionsheet in modal has pointer-events enabled, closes #660
2014-02-22 21:22:35 -06:00
Emanuel Kluge
9e942f894b
fix(ionicScrollDelegate): do not error if no scrollTop/Left values
...
Closes #659
2014-02-21 13:35:40 -05:00
Adam Bradley
f0faae1657
fix(tabs): Double tapping a tab would set the wrong view history, closes #656
2014-02-21 11:35:48 -06:00
Adam Bradley
a5471aeeb5
change classList fallback for multiple args
2014-02-18 22:58:21 -06:00
Adam Bradley
0421b7b450
Minimal classList polyfill added
2014-02-18 21:54:15 -06:00
Andy Joslin
2c39a21498
feat(ionic): prefix all directives with ion-
...
BREAKING CHANGE: All directives are now prefixed with `ion-`.
For any directive you use, add the ionic prefix.
For example, change this HTML:
```html
<tabs>
<tab title="home" href="/tab/home">
<content>Hello!</content>
</tab>
</tabs>
```
To this HTML:
```
<ion-tabs>
<ion-tab title="home" href="/tab/home">
<ion-content>Hello!</ion-content>
</ion-tab>
</ion-tabs>
```
2014-02-18 16:13:00 -05:00
Andy Joslin
0d3718cc21
fix(ionicLoading): make showDelay default to 0 (was 2000)
2014-02-18 11:57:44 -05:00
Andy Joslin
70d952499a
fix(ionicScrollDelegate): tapScrollToTop won't fire for button tap
...
Closes #557
2014-02-17 11:40:16 -05:00
Andy Joslin
9bc928f031
fix(modal): do not click buttons underneath modal
2014-02-17 10:16:03 -05:00
Andy Joslin
e1b6fd4f84
fix(scrollView): cancel scrollTop every time hash is set
...
Before it, only cancelled scrollTop the first time the hash was set.
Addresses #618
2014-02-17 09:10:23 -05:00
Andy Joslin
e106457e61
feat(modal): add .isShown() method to modal instances
...
Closes #320
2014-02-13 14:42:35 -05:00
Andy Joslin
110ff9f475
feat(modal): $broadcast 'modal.shown/hidden/removed' from parent scope
...
Closes #243
2014-02-13 14:40:54 -05:00
Andy Joslin
c119498d1b
feat($ionicScrollDelegate): add scrollTo(left,top,animate) to delegate
...
Also moves $ionicScrollDelegate.register to $ionicScroll controller,
and makes `<scroll>` directive be registered with $ionicScrollDelegate.
2014-02-11 13:40:45 -05:00
Andy Joslin
1c4d4a8b90
fix(browser): on first hash-set, dont set scrollTop
2014-02-11 09:44:59 -05:00
Andy Joslin
36691bbaeb
feat($ionicScrollDelegate): allow anchorScroll to animate with param
...
Addresses #508
2014-02-11 09:16:29 -05:00
Adam Bradley
042ad8e271
feature(DOM): Experiment w/ excluding 'ng-scope' and 'ng-isolate-scope' classnames from elements
...
Ultimate goal is to reduce DOM manipulations. It appears 'ng-scope' and
'ng-isolate-scope' classnames are not required for Angular to work. So
in an effort to reduce any DOM manipulations, we’re going to try to
excluding them from being added to elements and see what comes of it.
2014-02-10 11:20:43 -06:00
Andy Joslin
38c756b750
refactor(anchorScroll): use getElementById instead of querySelector to fix number ids
...
Addresses #508
2014-02-10 09:26:45 -05:00
Andy Joslin
4c9a4c0c62
refactor(anchorScroll): only get element ids under scrollEl
2014-02-09 18:06:05 -05:00
Andy Joslin
c2bbd9e96e
feat($ionicScrollDelegate): add .anchorScroll() function
...
Scrolls to the location of element with id matching $location.hash(). If
$location.hash() is blank or the id does not exist, it will scroll to
the top.
2014-02-09 11:37:30 -05:00
Andy Joslin
dc67300547
test(angularOverrides): add tests from jqLite, pass jshint
2014-02-09 11:31:00 -05:00
Adam Bradley
8dd2cd25bd
experiment w/ using classList.remove for removeClass
2014-02-08 22:11:13 -06:00
Adam Bradley
92b7669b2e
experiment w/ using classList to reduce DOM manipulations
2014-02-08 21:45:41 -06:00
Andy Joslin
ea289b81c6
fix(ionicScrollDelegate): trigger resize before scrolling to top/bottom
...
Closes #522
2014-02-06 09:51:35 -05:00
Andy Joslin
40fcd01e9b
fix(ionicView): erase saved scroll for a view on back
2014-02-05 10:42:14 -05:00
Adam Bradley
24c382bd9b
feat(tabs): clicking tab item again navigates to tab's home
2014-02-04 23:01:43 -06:00
Andy Joslin
2d1b71c8e2
feat(content): remember scroll of previous page
...
`content` directive stores scroll in view page history.
The history is passed down through $viewContentLoaded event, which is
broadcasted by navView directive when it loads a page.
2014-02-04 08:48:03 -05:00
Andy Joslin
479175bf5d
refactor(view): use nextUid from angular to generate unique ids
...
Math.random() is unreliable, produces duplicates, and numbers can
overflow if you use them for long enough.
2014-02-04 08:46:02 -05:00
Adam Bradley
25a9e527af
ionic.Platform.exitApp(), always run onPlatformReady()
2014-01-31 11:55:31 -06:00
Adam Bradley
95c8ddf301
Update $ionicPlatform.ready()
2014-01-31 10:31:42 -06:00
Adam Bradley
c3544d8a4a
Android back button fixes, closes #454
2014-01-30 22:01:20 -06:00
Adam Bradley
dc7420012e
refactor navView and viewService
2014-01-24 17:21:37 -06:00