Commits

Giuseppe Digilio authored bafa46bb244
Adjusted CSS and added default notification options in the environment config files
No tags

config/environment.default.js

Modified
18 18 // Caching settings
19 19 cache: {
20 20 // NOTE: how long should objects be cached for by default
21 21 msToLive: 15 * 60 * 1000, // 15 minute
22 22 control: 'max-age=60' // revalidate browser
23 23 },
24 24 // Notifications
25 25 notifications: {
26 26 rtl: false,
27 27 position: ['top', 'right'],
28 - maxStack: 8
28 + maxStack: 8,
29 + // NOTE: after how many seconds notification is closed automatically. If set to zero notifications are not closed automatically
30 + timeOut: 5000, // 5 second
31 + clickToClose: true,
32 + // NOTE: 'fade' | 'fromTop' | 'fromRight' | 'fromBottom' | 'fromLeft' | 'rotate' | 'scale'
33 + animate: 'scale'
29 34 },
30 35 // Angular Universal settings
31 36 universal: {
32 37 preboot: true,
33 38 async: true,
34 39 time: false
35 40 },
36 41 // Log directory
37 42 logDirectory: '.',
38 43 // NOTE: will log all redux actions and transfers in console

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut