Skip to content

Commit

Permalink
Use a specific revision in the rawgit CDN url, because rawgit caches …
Browse files Browse the repository at this point in the history
…files permanently, so remote_js=True would have resulted in using old javascript.
  • Loading branch information
Tim Shawver committed Jun 20, 2016
1 parent 73eaa7a commit a019e9a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ mainly just been reviewing PR's, writing docs, and occasionally making small con
Demo
----
See the demo by viewing `qgrid_demo.ipynb
<http://nbviewer.jupyter.org/gist/TimShawver/3c2f6b65529dcd08ffcc08f226dbd271>`_ in nbviewer.
<http://nbviewer.jupyter.org/gist/TimShawver/8fcef51dd3c222ed25306c002ab89b60>`_ in nbviewer.

API Documentation
-----------------
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ resources:
This is where you'll find the source code and the rest of the documentation for the project, including the
instructions for installing and running qgrid.

`qgrid demo on nbviewer <http://nbviewer.jupyter.org/gist/TimShawver/3c2f6b65529dcd08ffcc08f226dbd271>`_
`qgrid demo on nbviewer <http://nbviewer.jupyter.org/gist/TimShawver/8fcef51dd3c222ed25306c002ab89b60>`_
See a demo of qgrid in your browser without installing anything. The functionality of qgrid is somewhat limited
in this environment, but it'll give you an idea of how the grid will look and feel when you install it locally.

Expand Down
2 changes: 1 addition & 1 deletion qgrid/grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def template_contents(filename):
SLICK_GRID_CSS = template_contents('slickgrid.css.template')
SLICK_GRID_JS = template_contents('slickgrid.js.template')
REMOTE_URL = ("https://cdn.rawgit.com/quantopian/qgrid/"
"master/qgrid/qgridjs/")
"73eaa7adf1762f66eaf4d30ed9cbf385a7e9d9fa/qgrid/qgridjs/")
LOCAL_URL = "/nbextensions/qgridjs"


Expand Down

0 comments on commit a019e9a

Please sign in to comment.