Commit graph

180 commits

Author SHA1 Message Date
djmaze
b0942a7ff7 Move popupVisibility to knoin 2020-08-23 21:51:26 +02:00
djmaze
7a21694396 Drop windowResize/windowResizeCallback in favor of ResizeObservable 2020-08-19 12:34:05 +02:00
djmaze
97a73c6639 Replace timeOutAction() with debounce
Replace delegateRun()
Revert my throttle/debounce setTimeout() to Function.prototype[throttle/debounce]
2020-08-18 20:24:17 +02:00
djmaze
f6a55898c7 Removed isNormal() because 'null == undefined' so 'null != value' is sufficient 2020-08-17 21:57:56 +02:00
djmaze
9f1ea1a0fd Bugfix boostrap alerts.less was accidentally removed
Bugfix Date.fromNow('past'/'future') reversed
Replace Events[pub/sub]('interval.*') with setInterval()
Events[pub/sub] to native
Cleanup knockout extensions
Replaced momentToNode with proper HTML5 <time>
Cleanup Momentor
2020-08-14 20:35:39 +02:00
djmaze
6541a1de7c Remove Common/Enums Magics.* 2020-08-13 22:58:41 +02:00
djmaze
e7180a86ce Made eslint using 'browser' environment and added globals, because RainLoop is used in browsers.
This also allowed to remove all webpack 'externals' overhead.
2020-08-12 00:25:36 +02:00
djmaze
ecbe543b15 cleanup webpack 2020-08-07 16:28:30 +02:00
djmaze
bbd9f49dcd $.proxy is deprecated
$.trim is deprecated
2020-08-06 18:24:46 +02:00
djmaze
e1b274fcb4 Bugfix: scrollTop/scrollLeft never worked because .b-content has overflow:auto not the sub-div .content 2020-08-06 16:14:50 +02:00
djmaze
ea48f5060b isArray to native Array.isArray
isUnd(*) to native undefined === *
isFunc to native typeof * === 'function'
isObject to native typeof * === 'object'
microtime() to native Date().getTime();
noop to native ()=>{}
noopFalse to native ()=>false
noopTrue to native ()=>true
boolToAjax to native *?'1':'0'
Underscore.js to native
2020-07-29 21:49:41 +02:00
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
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
996a71ad8a missed one _.delay() to setTimeout() 2020-07-22 20:29:48 +02:00
djmaze
43c92a82e6 Underscore.js _.delay() to native setTimeout() 2020-07-22 20:28:25 +02:00
djmaze
a82575a830 Underscore.js _.map() to native Array.map() (optional with Object.entries/values) 2020-07-22 20:09:31 +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
9c0072d626 Underscore.js _.find() to native Array.find() 2020-07-22 10:43:19 +02:00
djmaze
eb15c6e45f Changes _.filter(array) to native array.filter() 2020-07-20 21:29:44 +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
djmaze
6e0d0b3b6e CRLF to LF 2020-03-11 14:17:52 +01:00
djmaze
4468d5bd22 Removed: twitter, google, dropbox, facebook, owncloud, modernizr from JavaScript 2020-03-11 12:55:03 +01:00
RainLoop Team
8a0be3212d prettier --write 2019-07-04 22:19:24 +03:00
RainLoop Team
791f0ff6ad Small fixes and improvements 2018-07-10 00:05:02 +03:00
RainLoop
d76fde37df Fix crippled contact names (#1447) 2017-09-27 20:58:15 +03:00
RainLoop
230624b60c Save showAttachmnetControls status to local storage (#1502) 2017-09-21 23:28:14 +03:00
RainLoop Team
425f0ee3f6 Small fixes 2017-08-07 18:09:14 +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
a45e9ba9c8 Add "move to folder" description 2017-03-01 21:38:18 +03:00
RainLoop Team
f0e9d1a6d5 Add new "Move to folder" button 2017-02-08 20:48:53 +03:00
RainLoop Team
20eff3a49a npm -> yarn 2016-12-15 02:13:20 +03:00
RainLoop Team
0e9cffd657 Small fixes 2016-12-15 00:56:17 +03:00
RainLoop Team
e6e0b02849 Code refactoring
Flow first look
2016-09-10 02:27:53 +03:00
RainLoop Team
1526130bfc Add asserts folder
Add @command decorator
2016-09-03 02:19:37 +03:00
RainLoop Team
a60ffc06e1 Update ckeditor
Avoid empty commands
Small fixes
2016-09-01 23:41:36 +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
59b32241bf More fixes for scrutinizer-ci 2016-08-09 22:52:30 +03:00
RainLoop Team
786873041f Small fixes 2016-07-17 18:29:35 +03:00
RainLoop Team
cec53b111f Code refactoring (5) (es5 -> es2015) 2016-07-17 18:05:15 +03:00
Pierre Rudloff
b23d9a77c4 Add unsubscribe button 2016-07-17 16:26:20 +02:00
RainLoop Team
a2308e251b Code refactoring (2) (es5 -> es2015) 2016-07-07 02:11:13 +03:00
RainLoop Team
38a1041a73 Code refactoring (es5 -> es2015) 2016-07-07 00:03:30 +03:00
RainLoop Team
fb2e492ce8 More scrict rules 2016-07-05 22:52:52 +03:00
RainLoop Team
52e2698cdf Add more strict rules (eslint) 2016-07-02 01:49:59 +03:00
RainLoop Team
8a6765faeb Fix eslint version 2016-07-01 01:50:11 +03:00
RainLoop Team
8e8a041032 eslint (additional rules) 2016-07-01 01:05:04 +03:00
RainLoop Team
77a1d3f3df jshint -> eslint 2016-06-27 23:55:37 +03:00
RainLoop Team
40b3f929e9 Back from Typescript to ES2015 2016-06-27 21:32:19 +03:00
RainLoop Team
a74a92638a Typescript (first look) 2016-06-25 01:19:21 +03:00
RainLoop Team
3217303a65 Fix search builder 2016-06-24 21:34:11 +03:00
RainLoop Team
f6c78ee1fa Improve message view pane (#1072) 2016-06-18 01:08:31 +03:00
RainLoop Team
eaf60c3c99 Add SPAM button on mobile view (#1073) 2016-06-17 23:11:52 +03:00
RainLoop Team
80ab02363e Code refactoring (v2) 2016-06-17 02:32:16 +03:00
RainLoop Team
90d95d3ca4 Code refactoring 2016-06-16 02:36:44 +03:00
RainLoop Team
1323a9ce52 Code refactoring (Q -> Promise) 2016-05-23 20:33:01 +03:00
RainLoop Team
a5b63cc84b Small interface fixes 2016-05-10 23:22:56 +03:00
RainLoop Team
116de6fd45 Fix mobile gui 2016-05-01 14:51:49 +03:00
RainLoop Team
b0ffd84ac6 Add mobile version (beta) 2016-05-01 04:07:29 +03:00
RainLoop Team
1391648e1b Split application data 2016-04-30 02:42:18 +03:00
RainLoop Team
3215c5f8d3 Small GUI fixes (#1014) 2016-04-30 00:23:53 +03:00
RainLoop Team
f64b63c549 Improve GUI (#1014) 2016-04-29 01:45:33 +03:00
RainLoop Team
568a1a1cda Fixed: Folder expand/collapse not remembered (#934) 2016-01-22 19:51:22 +03:00
RainLoop Team
53cf543795 babeljs: step 2 2015-11-18 23:10:01 +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
fc827326c4 Changed: photoswipe > lightGallery 2015-08-31 23:13:59 +03:00
RainLoop Team
9ade5a585b Clickable notifications (#745) 2015-07-06 22:47:08 +04:00
RainLoop Team
34a9b8cbc5 OpenPGP improvements (first step)
openpgpjs: 0.7.2 -> 0.10.1
additional fixes
2015-06-23 01:34:52 +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
f91f74fe7c Release fixes 2015-05-12 20:33:02 +04:00
RainLoop Team
1fb553e77e Remote Synchronization (CardDAV) improvements:
now it supports address book url auto detection (and works with Google contacts, icloud and etc.)
2015-05-09 02:43:56 +04:00
RainLoop Team
104ac0806a Source refactoring 2015-05-04 20:52:24 +04:00
RainLoop Team
1d61ea347f Don't add linked attachments in zip 2015-04-29 00:28:50 +04:00
RainLoop Team
2d1d71b147 Fixed attachments slideshow 2015-04-28 17:50:18 +04:00
RainLoop Team
48b91fb957 Save attachments as ... 2015-04-25 02:58:56 +04:00
RainLoop Team
f5f067f1f3 Small fixes 2015-04-25 02:19:20 +04:00
RainLoop Team
03d26bc4c6 New thread list logic (step 2) 2015-04-21 02:39:14 +04:00
RainLoop Team
b656b6365b New thread list logic (step 1) 2015-04-20 23:49:51 +04:00
RainLoop Team
a4904f4c00 Message thread optimization 2015-04-15 02:27:31 +04:00
RainLoop Team
0ea982671b PreRelease 1.8.3 2015-04-14 00:24:15 +04:00
RainLoop Team
af2815cd61 Attachments control panel 2015-04-11 01:52:15 +04:00
RainLoop Team
1d943356f5 Simple mp3 player 2015-04-10 12:17:49 +04:00
RainLoop Team
351c12c002 Welcome page branding option 2015-04-10 02:07:03 +04:00
RainLoop Team
80c5e35a29 New styles for toltips (Opentip)
Selector new functionality
x-script tag support for templates
2015-04-02 01:59:03 +04:00
RainLoop Team
c1c817c837 selector onUpUpOrDownDown event 2015-04-02 01:59:02 +04:00
RainLoop Team
18931eaca0 Smooth reload animation 2015-03-31 04:12:05 +04:00
RainLoop Team
de06ab1a41 MAC OS drag & drop fixes (#562) 2015-03-31 00:55:07 +04:00
RainLoop Team
1481bd88e5 Small fixes
+ BUTTON_THREAD_MORE
2015-03-30 21:54:45 +04:00
RainLoop Team
1d9acea5ae Added en-gb language (for 24 time format) 2015-03-20 23:23:57 +04:00
RainLoop Team
d8c9f7ec14 Code refactoring 2015-03-19 01:59:55 +04:00
RainLoop Team
bab64a7cea Code refactoring (promises for folders management) 2015-03-17 18:30:17 +04:00
RainLoop Team
3090b44dae Interface fixes 2015-03-16 02:01:51 +04:00
RainLoop Team
c23ba31e17 Promises (first look)
Thread dropdown
Small fixes
2015-03-14 18:27:44 +04:00
RainLoop Team
3613bf5270 vCard parser fixes 2015-03-09 23:42:43 +04:00
RainLoop Team
147dce6e4a Momentor (moment optimization) 2015-03-07 04:41:38 +04:00