lilifan
e171db026f
correct type mistake
...
Sorry to bother , but it seems that in such situations , the minimal delay is increased instead of decreased ?
2017-10-14 23:45:03 +08:00
lilifan
3322f52122
correct type mistake
...
correct type mistake
2017-10-14 23:23:14 +08:00
Alexander
089af82ee2
Update article.md
2017-10-14 11:31:13 +03:00
Alexander
50e6a1571d
Typos
2017-10-14 01:19:47 +03:00
Ilya Kantor
b4ee23ce2c
Merge pull request #239 from dallin-r-parker/master
...
Update article.md
2017-10-13 22:11:51 +03:00
Ilya Kantor
05897fb5b1
Merge pull request #238 from Zaramont/master
...
Spelling mistake in word "bahavior"
2017-10-13 22:11:38 +03:00
Dallin parker
bfb9ca52df
Update article.md
...
I believe you're referring to a "novice" user
2017-10-11 12:54:45 -04:00
Zaramont
71fec328c1
Spelling mistake in word "behavior"
...
Spelling mistake in word "behavior"
2017-10-11 14:43:17 +03:00
Ilya Kantor
de725bd171
up
2017-10-11 14:18:27 +03:00
Ilya Kantor
3c08cc446b
minor
2017-10-07 17:50:22 +03:00
Ilya Kantor
ec665a7005
Merge pull request #234 from AndreyKalashnik/patch-2
...
Update article.md
2017-10-07 17:05:04 +03:00
Ilya Kantor
61f92a158c
Merge pull request #235 from amid11/patch-1
...
Fix for replacing the middle item in an Array
2017-10-07 17:04:53 +03:00
Ilya Kantor
4ab4223cab
Merge pull request #236 from johannkm/patch-1
...
Fix typo: 'pop to end' in Arrays:Stacks
2017-10-07 17:04:39 +03:00
Ilya Kantor
62c4fb9e50
Merge pull request #233 from hazkaz/patch-1
...
fixed typo on line 44
2017-10-07 17:04:27 +03:00
Johann Miller
34c0a5a704
Fix typo: 'pop to end' in Arrays:Stacks
2017-10-06 16:01:26 -04:00
Amid Dadgar
70d1d874f6
Fix for replacing the middle item in an Array
...
the provided code `styles[(styles.length - 1) / 2] = "Classics";` will replace the last item instead of the middle one. in order to fix that we need to change code like this : `styles[Math.floor((styles.length - 1) / 2)] = "Classics";`
2017-10-06 17:05:26 +03:30
Andrew
6eccd9dbbb
Update article.md
2017-10-05 19:00:20 +02:00
RobotWizard
f51afac4ac
fixed typo on line 44
...
minor fix.
2017-10-05 09:56:41 +05:30
Ilya Kantor
cceb7cbcc8
Merge pull request #232 from GeorgySerga/patch-5
...
Fix typo, 08-keys-values-entries
2017-10-03 00:46:38 +03:00
Ilya Kantor
eb95a01dc3
Merge pull request #231 from GeorgySerga/patch-4
...
Fix typos, 07-map-set-weakmap-weakset
2017-10-03 00:45:27 +03:00
Georgy
4f584b0515
Fix typo, 08-keys-values-entries
2017-10-02 14:47:40 -04:00
Georgy
2be0ffd289
Fix typos, 07-map-set-weakmap-weakset
2017-10-02 14:29:44 -04:00
Ilya Kantor
121c264090
fixed
2017-10-02 12:07:14 +03:00
Ilya Kantor
ed0e64b838
minor
2017-10-02 12:06:27 +03:00
Ilya Kantor
501d5613e1
Merge pull request #230 from viatsko/patch-1
...
Fixed spy-decorator assignment test
2017-10-02 09:41:13 +03:00
Valerii Iatsko
8c6f614dc4
Fixed spy-decorator assignment test
...
Hi!
We should be checking here original function not spy to ensure that we are wrapping transparently.
The test wasn't working and probably that was just a "typo" to begin with.
This makes it work properly.
2017-10-01 09:34:43 +02:00
Ilya Kantor
1ece4a5b61
Merge pull request #221 from usernamehw/patch-2
...
Typos & spacing
2017-10-01 07:26:35 +03:00
Ilya Kantor
5ad8c9f4bd
Merge pull request #222 from usernamehw/patch-3
...
Spacing
2017-10-01 07:26:11 +03:00
Ilya Kantor
acfb23fe0f
Merge pull request #223 from usernamehw/patch-5
...
Spacing
2017-10-01 07:26:03 +03:00
Ilya Kantor
60985627bb
Merge pull request #224 from usernamehw/patch-6
...
Typo
2017-10-01 07:25:53 +03:00
Ilya Kantor
e6c9e21c95
Merge pull request #225 from gnardin/patch-1
...
Update article.md
2017-10-01 07:25:37 +03:00
Ilya Kantor
a633642f8b
Merge pull request #226 from amboz/patch-1
...
Update article.md
2017-10-01 07:25:23 +03:00
Ilya Kantor
a0d60d7516
Merge pull request #227 from ozimos/patch-2
...
Update article.md
2017-10-01 07:25:01 +03:00
Ilya Kantor
f401a67fd9
Merge pull request #228 from usernamehw/patch-8
...
Typo & spacing
2017-10-01 07:22:31 +03:00
Ilya Kantor
c9d53f160f
Merge pull request #220 from usernamehw/patch-1
...
Typo
2017-10-01 07:21:30 +03:00
Alexander
fd1eaf40b6
Typo & spacing
2017-09-29 04:39:12 +03:00
Tovieye Moses Ozi
60609fbd74
Update article.md
2017-09-28 22:42:41 +01:00
Amanda Bozigian
2d8ae03fb0
Update article.md
...
Ln 53, "then" --> "than"
Changed: For instance, a `focus` event does not bubble. There are other examples too, we'll meet them. But still it's an exception, rather then a rule, most events do bubble.
To: For instance, a `focus` event does not bubble. There are other examples too, we'll meet them. But still it's an exception, rather than a rule, most events do bubble.
2017-09-28 14:09:27 -07:00
Luis Gustavo Nardin
8407e7726e
Update article.md
2017-09-28 15:17:28 +02:00
Alexander
560eb0e9b4
Typo
2017-09-28 07:47:39 +03:00
Alexander
cb37ad9291
Spacing
2017-09-28 07:36:07 +03:00
Alexander
0aaa498d2c
Spacing
2017-09-28 07:31:09 +03:00
Alexander
14a926c7a3
Typos & spacing
2017-09-28 07:15:40 +03:00
Alexander
4858aaa062
Typo
2017-09-28 01:18:05 +03:00
Ilya Kantor
5b16f003cc
Merge branch 'master' of https://github.com/iliakan/javascript-tutorial-en
2017-09-28 01:14:56 +03:00
Ilya Kantor
899e3e17de
fixes
2017-09-28 01:14:52 +03:00
Ilya Kantor
43c197889e
Merge pull request #217 from Thespawnexe/patch-4
...
Moar spaces in 07-operators.
2017-09-27 15:16:28 +03:00
Ilya Kantor
5249604598
Merge pull request #219 from Hobinx/patch-2
...
Fix typo
2017-09-27 15:16:17 +03:00
Ilya Kantor
6dd1311c21
Merge pull request #218 from Hobinx/patch-1
...
Fix single quotes mismatch.
2017-09-27 15:16:03 +03:00
kosoado
163e61a208
Fix typo
2017-09-27 06:48:12 -05:00