Commit Graph

2824 Commits

Author SHA1 Message Date
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
Andrew Joslin
8c36a667d8 test(actionSheet): fix test for angular v1.2.17 2014-06-10 15:27:48 -06:00
Andrew Joslin
89d5553d7f feat(angular): update to AngularJS v1.2.17 2014-06-10 15:27:25 -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
374d65e5fe test(karma-watch): use phantom browser due to a bug with chrome 2014-06-10 11:31:26 -06:00
Perry Govier
ead5e026b9 fix(radioButtons): Correcting a bug introduced by 521164db78. Closes #1599 2014-06-10 10:57:19 -05:00
Adam Bradley
772459df1e fix(tap): ignoreScrollStart w/ data-tap-disabled
If an element, or one of its ancestors, has the `data-tap-disabled`
attribute, then it should not start the scroll. Closes #1505
2014-06-10 10:18:18 -05:00
Adam Bradley
f5bb023ef7 fix(tap): cancel simulated click w/ hold events
Gesture hold event and ionic’s tap will both fire since the tap has no
strict duration between its start and end (a click will always fire no
matter how long the press is held). If a hold event fires from
ionic.Gesture, then the simulated click which would fire on
touchend/mouseup should be canceled.
2014-06-09 22:00:35 -05:00
Adam Bradley
a8af748af6 test(ionSlideBox): remove img src 2014-06-09 14:17:07 -05:00
Andrew Joslin
bb88cfe578 chore(build): fix demos task not building ionic files correctly 2014-06-09 12:33:50 -06:00
Adam Bradley
24497eb653 test(snapshot): updates for spec index 2014-06-09 11:27:10 -05:00
Andrew Joslin
a5230749a7 docs(ionInfiniteScroll): improve explanation of infiniteScrollComplete event 2014-06-08 12:34:43 -04:00
Perry Govier
d779346393 fix(listView): avoiding potential memory leak from assigning properties directly to an element 2014-06-06 15:26:58 -05:00
Perry Govier
afdf0ad764 fix(listView): position dragged list item properly when list view's parent is offset. Closes #1583 2014-06-06 15:14:52 -05:00
Andrew Joslin
40392c0da3 test(snapshot): make it pass params.platform_index and count in 2014-06-06 14:29:26 -04:00
Adam Bradley
0543a9b816 test(css): snapshot updates 2014-06-06 13:47:10 -04: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
dfdf084533 docs(): add 'View Source' link
Closes #1404
2014-06-06 00:50:17 -06:00
Andrew Joslin
c9342c8a54 test(css): make css tests work with snapshot 2014-06-06 00:39:18 -06:00
Andrew Joslin
ce831a98b4 chore(snapshot): include css tests 2014-06-06 00:39:18 -06:00
Adam Bradley
a43980bbcc Merge pull request #1430 from malixsys/patch-4
fix(rAF): fixing requestAnimationFrame & cancelAnimationFrame
2014-06-05 20:01:16 -07:00
Adam Bradley
eec1ceb1fb Merge pull request #1455 from malixsys/patch-5
fix(tap): `touch-action: pan-y` instead of `none`
2014-06-05 19:58:01 -07:00
Adam Bradley
bc48833925 test(css): reorganize css tests for snapshots 2014-06-05 15:12:45 -05:00
Perry Govier
a49ecf35e6 chore(cleanup): Remove FF 18- vendor prefixing since there's no plan to support it 2014-06-05 11:10:02 -05:00
Cormac Long
5286a0c4db fix(firefox): Add FF 19+ style vendor prefixing (bit.ly/1tLz8Qp) Closes #1574 2014-06-05 10:52:56 -05:00
Andrew Joslin
9942045fb2 amend($ionicModal): if hardwareBackButtonClose false, back button is noop
Addresses #1397
2014-06-05 07:29:39 -06:00
Perry Govier
53af788da9 chore(gitignore): add .idea files to gitignore 2014-06-04 16:45:08 -05:00
Andrew Joslin
a0bc43e37e chore(build): make old version in nightly changelog show correctly 2014-06-04 15:20:32 -06:00
Andrew Joslin
26d9d87669 chore(circleci): make sure git dir is not shallow for changelogs 2014-06-04 14:43:22 -06: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
Jared Smith
e88659c6f8 fix(ionScroll): let zoom work on android devices
Closes #1440
2014-06-04 13:56:26 -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
Andrew Joslin
538737ac89 chore(ionic-snapshot): make it so screenshots are posting asynchronously 2014-06-04 11:02:25 -06:00
Tim Lancina
6697e66f17 fix keyboard-attach docs 2014-06-04 10:41:53 -05:00
Adam Bradley
ac302b28a1 test(snapshot): add platform_index / platform_count 2014-06-03 23:33:31 -05:00
Andrew Joslin
d1c46ebcdd chore(): update README 2014-06-03 19:54:19 -06:00
Andrew Joslin
e5cf6eb17b chore(): make release task work properly 2014-06-03 15:51:01 -06:00
Andrew Joslin
433a5e3f62 Update README.md 2014-06-03 15:33:43 -06:00
Andrew Joslin
abd7bfa540 chore(): travis to circleci 2014-06-03 15:23:00 -06:00
Andrew Joslin
264e092bf8 demo(collectionRepeat/contacts): use icons instead of kittens 2014-06-03 09:13:32 -06:00
Andrew Joslin
7980ea877d chore(build): snapshot upgrades with more parameters 2014-06-03 07:38:26 -06:00
Adam Bradley
71efd51bff fix(popup): focus on first input
Closes #822
2014-06-02 22:35:33 -05:00