djmaze
b8043cdc98
Remove unused bMobileDevice import
2020-08-22 01:09:50 +02:00
djmaze
b185402ae7
Bugfix: Contacts.js trim() missing
...
Bugfix: ClearCookie failed
2020-08-22 01:05:43 +02:00
djmaze
996723a486
Removed: KnockoutJS 'hasFocus:' because HTML5 has autofocus=""
...
Knoin.js now searches for [autofocus] and handles it
2020-08-22 01:03:03 +02:00
djmaze
7a21694396
Drop windowResize/windowResizeCallback in favor of ResizeObservable
2020-08-19 12:34:05 +02:00
djmaze
d1c06a8ece
Extend the use of ResizeObserver by dropping all knockoutjs observable this.resizerTrigger in mail composer
...
As benefit this also drops the CustomEvent('resize.real')
2020-08-19 11:30:31 +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
7670d2073d
Prevent parameter errors in sendMessage()/saveMessage() due to too many parameters.
...
Instead provide an object.
sendMessage param 'SentFolder' and saveMessage param 'DraftFolder' now both 'SaveFolder'
2020-08-17 21:32:57 +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
f5a444aa14
Removed opentip
...
Cleanup lightgallery
2020-08-13 13:16:08 +02:00
djmaze
a8ef5ec75b
Bugfix: Email addressparser
...
Cleanup vendor scripts
2020-08-12 11:49:40 +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
b1678a1566
Replaced moment.js with simple extended Date.prototype
2020-08-07 14:44:33 +02:00
djmaze
bbd9f49dcd
$.proxy is deprecated
...
$.trim is deprecated
2020-08-06 18:24:46 +02:00
djmaze
ae1b7610fd
Remove use of $.error in jquery-ui
2020-08-06 16:24:19 +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
327e6f65cd
searchSubtractFormatDateHelper to native as moment.js not needed
2020-07-31 16:45:43 +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
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
961fa305c9
-1…*.indexOf() to native .includes()
2020-07-20 21:39:00 +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
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
08333610ce
Update dependencies
2019-12-24 22:05:46 +03:00
RainLoop Team
40dc22a317
Remove knockout-transformations dependency
2019-07-04 22:58:15 +03:00
RainLoop Team
8a0be3212d
prettier --write
2019-07-04 22:19:24 +03:00
RainLoop Team
450528ff00
Add prettier
2019-07-04 22:09:27 +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 Team
425f0ee3f6
Small fixes
2017-08-07 18:09:14 +03:00
RainLoop Team
709eeddd09
Small fixes
2017-07-11 15:40:31 +03:00
RainLoop Team
a72b95a868
Fix compose focus/cursor
2017-07-06 02:56:11 +03:00
RainLoop Team
ab374bbb71
Many small fixes.
2017-07-06 01:31:41 +03:00
RainLoop Team
45fe0217f2
Add "Automatically save draft" option
2017-06-28 19:25:53 +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
6a6f420c76
2016 -> 2017
...
+ Small fixes
2017-02-25 22:21:41 +03:00
RainLoop Team
9d60dd0786
Add some signature improvements ( #1238 )
2016-10-27 00:25:15 +03:00
RainLoop Team
760d9e6243
Fix: Can not view OpenPGP key ( #1200 )
2016-09-30 16:42:38 +03:00
RainLoop Team
e6e0b02849
Code refactoring
...
Flow first look
2016-09-10 02:27:53 +03:00
RainLoop Team
6b1fd1239f
Fix signature adding
2016-08-31 00:31:51 +03:00