You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
413 B

7 years ago
  1. from django.conf import settings
  2. # All of the refresh values are in miliseconds, 1 second = 1000 miliseconds
  3. # Adjust accordingly as you wish, preferably in your application's settings.py.
  4. TIME_JS_REFRESH = getattr(settings, 'TIME_JS_REFRESH', 30000)
  5. TIME_JS_REFRESH_LONG = getattr(settings, 'TIME_JS_REFRESH_LONG', 120000)
  6. TIME_JS_REFRESH_NET = getattr(settings, 'TIME_JS_REFRESH_NET', 2000)
  7. _VERSION = '1.4.4'