Commit Graph

3005 Commits

Author SHA1 Message Date
Perry Govier
93d586dea4 fix(tabs): vertically center text and icons on tabs-icon-left/right fixes #1827 2014-08-05 17:14:07 -05:00
Perry Govier
53c437e205 fix(ionRadio): fix ng-change being reported before model changes
Closes #1741

BREAKING CHANGE:

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

Change your code from this:

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

To this:

<ion-radio ng-disabled="{{isDisabled}}"></ion-radio>
2014-08-05 16:42:10 -05:00
Adam Bradley
49a295638d refactor(popup): do not default to focus on first input
Instead of finding a popup element’s first input and focusing on it by
default, only look for the first input with the `autofocus` attribute
added.
2014-08-05 13:58:00 -05:00
Andrew
d4b9ed44fa chore(): remove ionic animation, add collide dependency 2014-08-05 11:56:46 -06:00
Adam Bradley
d85814b1e6 update to use $timeout w/ invokeApply=false 2014-08-05 11:31:06 -05:00
Perry Govier
ae87c66b12 fix(popup): backdrop release fires with every close 2014-08-05 11:16:46 -05:00
Adam Bradley
7faeeda099 fix(backdrop): disable tap longer after backdrop close
To prevent unwanted clicks from happening, such as an input getting
focus after clicking “OK” on a popup, keep the backdrop visible for a
longer period of time. The simulated click is what closes the popup’s
backdrop, but the native click will still happen 300ms later, which may
cause another input to receive focus. Closes #1536
2014-08-05 11:01:33 -05:00
Adam Bradley
06086ee9ae fix(header): buttons do not align in Android 4.4
Closes #1614
2014-08-05 10:23:23 -05:00
Max Lynch
64641b1be0 fix(viewService): No error on clearHistory for empty history 2014-08-04 14:17:54 -05:00
Adam Bradley
5b99fd6891 fix android popover background 2014-08-04 12:08:56 -05:00
Adam Bradley
623a9c6313 fix $ionicPopover ref 2014-08-04 09:00:44 -05:00
Andrew
b6b0447030 chore(): fix deploy script 2014-08-03 20:07:29 -06:00
Andrew
0edac30cec chore(): disable site deploy tasks temporarily 2014-07-31 15:31:33 -06:00
Andrew
f0a3e28d23 chore(): install jekyll 2014-07-31 15:28:29 -06:00
Andrew
efc5b31540 chore(): update scripts for site 2014-07-31 15:22:31 -06:00
Adam Bradley
42b0b63a28 docs(popover): $ionicPopover / ionicPopover 2014-07-31 16:09:42 -05:00
Adam Bradley
c1215aa300 feat(popover): created popovers 2014-07-31 14:43:29 -05:00
Perry Govier
ddda809b57 feat(tabs): Expand striped android style tab functionality. Closes 1694 2014-07-30 15:52:53 -05:00
Max Lynch
848c78d10d docs(scroll): Better demo and usage 2014-07-30 13:47:49 -05:00
Max Lynch
38781403bb Simple form update 2014-07-30 11:41:56 -05:00
Max Lynch
0390323944 fix(cards): No more double margin if inside padding container 2014-07-30 11:41:56 -05:00
Perry Govier
bf1c1bc971 fix(tabs): remove important flag from `.tabs{border-bottom:none;} Fixes: 1652 2014-07-29 14:06:17 -05:00
Perry Govier
2993159f2a test(forms): add the new forms test to snapshot tests 2014-07-29 12:48:41 -05:00
Max Lynch
89999cadb1 fix(forms): Normalized form styles 2014-07-29 10:32:40 -05:00
Mike Hartington
9088462485 Merge pull request #1864 from darkbaby123/patch-1
Fix ion-nav-back-button document
2014-07-28 18:13:09 -04:00
Adam Bradley
5554302a07 update codenamed 2014-07-28 10:46:47 -05:00
Adam Bradley
05faf6be07 docs(): explain sudo in read me
Closes #1370
2014-07-28 09:33:55 -05:00
Adam Bradley
b72d5f8ad5 Merge pull request #1875 from jfigueruela/patch-1
Update CODENAMES
2014-07-28 08:49:13 -05:00
jfigueruela
a142260704 Update CODENAMES 2014-07-28 13:39:50 +02:00
darkbaby123
26cff585a1 Fix ion-nav-back-button document
The html code in "custom click action" example should call "goBack" method, not "doSomethingCool".
2014-07-27 15:39:06 +08:00
Adam Bradley
222a0d8eca Merge pull request #1847 from moroshko/patch-2
docs(): remove duplicate "scrollbar-y"
2014-07-25 10:31:37 -05:00
Max Lynch
a9a52f64f4 fix(nav): Removed border on animation 2014-07-25 10:19:18 -05:00
Misha Moroshko
b63ce7e50e Remove duplicate "scrollbar-y" 2014-07-25 19:47:50 +10:00
Adam Bradley
ed9e0715e2 hafnium-heron v1.0.0-beta.10 2014-07-24 20:38:54 -05:00
Perry Govier
7d2105a18c chore(scripts): update deploy script to new website configuration 2014-07-24 20:38:01 -05:00
Adam Bradley
fb9013eda5 remove used code names 2014-07-24 20:31:26 -05:00
Ionitron
90f1e9fed0 release: v1.0.0-beta.10 "gadolinium-gator" 2014-07-25 00:06:49 +00:00
Perry Govier
00ccd9c45c pre-release: v1.0.0-beta.10 2014-07-24 19:04:34 -05:00
Perry Govier
c1cb4ca403 pre-release: v1.0.0-beta.10 2014-07-24 18:39:59 -05:00
Andrew
508848f93c style(ionReorderButton): make sure it's not cutoff 2014-07-24 17:22:27 -06:00
Perry Govier
951a9d3523 fix(scroll): prevent native webkit scrollbars from showing 2014-07-24 16:52:58 -05:00
Perry Govier
4f6d02cfcb refactor(modal): trigger resize event on the window when modal opens
A better approach to resolving an issue with collection-repeat sizing itself properly. This keeps directives independent of eachother.
2014-07-24 14:45:40 -05:00
Perry Govier
1fbd3c5632 fix(collectionRepeat): properly display collection repeat inside a modal 2014-07-24 12:44:29 -05:00
Perry Govier
4e6ba5b818 refactor(scroll): minor tweak to make unit tests happy 2014-07-24 12:27:42 -05:00
Andrew
74711cbc36 test(): remove iit 2014-07-24 11:15:50 -06:00
Andrew
79bcfb149f test(gesture): fix gesture directive tests 2014-07-24 11:15:26 -06:00
Adam Bradley
2dce7a74f7 fix(gesture): fix onSwipeDown
Closes #1810
2014-07-22 12:43:58 -05:00
Perry Govier
3d0a46efe8 fix(scroll): anchor scroll should scroll to IDs that are multiple levels beneath the scroll view. Closes #1804 2014-07-21 14:58:29 -05:00
Adam Bradley
5b50e120a1 fix(nav): remove disabled-pointer-events
Ensure `disable-pointer-events` has been removed if there is not
supposed to be an animated transition. Closes #1383 #1633
2014-07-21 10:34:55 -05:00
Andrew
26ca840dfc feat($ionicLoading): add $ionicLoadingConfig constant for default options
Closes #1800
2014-07-21 08:22:43 -06:00