djmaze
|
2ba34532c2
|
JavaScript string compare '' is always a ToBoolean
See https://www.ecma-international.org/ecma-262/5.1/#sec-9.2
|
2020-07-28 17:20:14 +02:00 |
|
djmaze
|
82bed1ed80
|
Cleanup array.length checks and for() to forEach()
|
2020-07-28 12:35:41 +02:00 |
|
djmaze
|
134cb7d52a
|
Replace missed $.ajax with window.fetch
|
2020-07-23 20:35:37 +02:00 |
|
djmaze
|
dca0ff02ed
|
Use jQuery.slim
Underscore.js _.uniq(_.compact( to native Array.filter((value, index, self) => !!value && self.indexOf(value) == index)
Underscore.js _.compact to native Array.filter(value => !!value)
Underscore.js _.uniq to native Array.filter((value, index, self) => self.indexOf(value) == index)
Underscore.js _.values to native Object.values
Underscore.js _.flatten to native Array.flat
Underscore.js _.union to native Array.concat + unique filter
Underscore.js _.reduce to native Array.reduce
Underscore.js _.escape replaced with advanced htmlspecialchars()
Underscore.js _.memoize replaced
Now Underscore.js is a slim custom version (only _.debounce, _.defer & _.throttle)
|
2020-07-23 16:06:16 +02:00 |
|
djmaze
|
43c92a82e6
|
Underscore.js _.delay() to native setTimeout()
|
2020-07-22 20:28:25 +02:00 |
|
djmaze
|
a5d41edb24
|
Underscore.js _.each() to native Array.forEach() (optional with Object.entries/values)
|
2020-07-22 14:49:18 +02:00 |
|
djmaze
|
178e5f6ef7
|
Remove _.isNull
|
2020-07-22 10:54:28 +02:00 |
|
djmaze
|
9c0072d626
|
Underscore.js _.find() to native Array.find()
|
2020-07-22 10:43:19 +02:00 |
|
djmaze
|
756fe81091
|
Replaced _.has() with native Object.prototype.hasOwnProperty.call()
|
2020-07-20 22:06:21 +02:00 |
|
djmaze
|
af136f46c4
|
_.bind(function, object) to function.bind(object)
|
2020-07-20 15:47:33 +02:00 |
|
djmaze
|
db2d95d684
|
JavaScript inArray()/indexOf() to .includes()
|
2020-07-20 14:33:33 +02:00 |
|
djmaze
|
0b0747b8dc
|
Upgraded some old JavaScript to ECMAScript 1.6
Removed some jQuery references
Added JavaScript Globals.$htmlCL for frequently used window.document.documentElement.classList
|
2020-07-15 14:25:51 +02:00 |
|
RainLoop Team
|
8a0be3212d
|
prettier --write
|
2019-07-04 22:19:24 +03:00 |
|
RainLoop Team
|
13065dd926
|
Update dependencies
|
2019-03-28 01:01:26 +03:00 |
|
RainLoop Team
|
95eb786a3f
|
Update deps
|
2018-10-06 02:13:58 +03:00 |
|
RainLoop
|
90a3d2b62a
|
Fix incorrect mailto format #1521
|
2017-10-06 21:52:00 +03:00 |
|
RainLoop
|
d76fde37df
|
Fix crippled contact names (#1447)
|
2017-09-27 20:58:15 +03:00 |
|
RainLoop Team
|
425f0ee3f6
|
Small fixes
|
2017-08-07 18:09:14 +03:00 |
|
RainLoop Team
|
ab374bbb71
|
Many small fixes.
|
2017-07-06 01:31:41 +03:00 |
|
RainLoop Team
|
483549660b
|
Add "cc" to "View in separate window"/"Print"
|
2017-07-05 22:20:24 +03:00 |
|
RainLoop Team
|
8da988fef2
|
Synchronize localizations from Transifex
Update package.json dependencies
Fix eslint errors
webpack 2 -> webpack 3
|
2017-06-24 22:26:27 +03:00 |
|
RainLoop Team
|
ca4897038a
|
Fix strange quoting behaviour (#1225)
|
2016-10-26 01:10:36 +03:00 |
|
RainLoop Team
|
e6e0b02849
|
Code refactoring
Flow first look
|
2016-09-10 02:27:53 +03:00 |
|
RainLoop Team
|
17bdc999f6
|
Update js dependencies
|
2016-09-07 00:06:38 +03:00 |
|
RainLoop Team
|
1526130bfc
|
Add asserts folder
Add @command decorator
|
2016-09-03 02:19:37 +03:00 |
|
RainLoop Team
|
b28d4f8cf3
|
Update dependencies
|
2016-08-30 01:10:24 +03:00 |
|
RainLoop Team
|
e6e1a19477
|
Add cmd interface
|
2016-08-23 23:15:14 +03:00 |
|
RainLoop Team
|
17669b7be0
|
es5 -> es2015 (last stage)
Signature plugin fixes
Add view decorator
A large number of fixes
|
2016-08-20 20:30:16 +03:00 |
|
RainLoop Team
|
e88c193334
|
*.jsx -> *.js
|
2016-08-11 02:34:09 +03:00 |
|
RainLoop Team
|
08ccf55577
|
js -> jsx
|
2016-06-07 00:58:44 +03:00 |
|
RainLoop Team
|
06d3dac310
|
Code improvements
|
2016-05-24 00:57:36 +03:00 |
|
RainLoop Team
|
72bf212f67
|
Improve scripts load system
|
2016-05-20 10:11:38 +03:00 |
|
RainLoop Team
|
1391648e1b
|
Split application data
|
2016-04-30 02:42:18 +03:00 |
|
RainLoop Team
|
72ca818500
|
Fix eslint warnings
|
2016-04-20 20:31:24 +03:00 |
|
RainLoop Team
|
445cd155e5
|
ES2015 first look / babeljs
|
2015-11-15 03:24:02 +03:00 |
|
RainLoop Team
|
7b5d00ff01
|
Small improvements
|
2015-10-14 19:47:46 +03:00 |
|
RainLoop Team
|
5123841540
|
Pgp improvements
|
2015-07-29 21:23:10 +04:00 |
|
RainLoop Team
|
4457cdbc23
|
Improvements of message displaying (internal styles)
|
2015-06-23 01:34:50 +04:00 |
|
RainLoop Team
|
8f55b5c554
|
Release fixes
Additional branding options
fixes (php mail functionality)
|
2015-05-23 02:07:47 +04:00 |
|
RainLoop Team
|
763fae345b
|
Capability improvements
Additional branding options
|
2015-05-20 15:46:34 +04:00 |
|
RainLoop Team
|
9a98bff931
|
Release fixes
|
2015-05-18 00:41:57 +04:00 |
|
RainLoop Team
|
f91f74fe7c
|
Release fixes
|
2015-05-12 20:33:02 +04:00 |
|
RainLoop Team
|
104ac0806a
|
Source refactoring
|
2015-05-04 20:52:24 +04:00 |
|
RainLoop Team
|
0ea982671b
|
PreRelease 1.8.3
|
2015-04-14 00:24:15 +04:00 |
|
RainLoop Team
|
d8c9f7ec14
|
Code refactoring
|
2015-03-19 01:59:55 +04:00 |
|
RainLoop Team
|
f817a680a2
|
Updated Autolinker library (Closes #532)
|
2015-03-19 01:58:58 +04:00 |
|
RainLoop Team
|
c23ba31e17
|
Promises (first look)
Thread dropdown
Small fixes
|
2015-03-14 18:27:44 +04:00 |
|
RainLoop Team
|
147dce6e4a
|
Momentor (moment optimization)
|
2015-03-07 04:41:38 +04:00 |
|
RainLoop Team
|
053fd1c60b
|
Release commit
|
2015-02-26 20:50:33 +04:00 |
|
RainLoop Team
|
19f089d0bf
|
Small fixes
Utf8 clear supports icon unicode
|
2015-02-26 20:48:09 +04:00 |
|