Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1""" 

2**Why no AJAXMixin?** 

3 

4An AJAX mixin similar to Braces' AjaxResponseMixin simply allows a view for "fork" behavior based on 

5``request.is_ajax()``. We feel a better practice is to create a view that specifically handles AJAX requests because 

6this is much more obvious, easier to test, and reduces the code complexity of the view. 

7 

8""" 

9from .mixins import JSONMixin 

10from .views import AjaxFileUploader 

11 

12__all__ = ( 

13 "AjaxFileUploader", 

14 "JSONMixin", 

15)