##// END OF EJS Templates
Add tooltips to the notebook via 'title' attr....
Add tooltips to the notebook via 'title' attr. All buttons, show/hide clickable areas, etc. should have some tooltip describing what they do. There are jQuery plugins for enhanced tooltips, but this gets the lightest version working. closes #436

File last commit:

r4924:113dc5b1
r5097:accaced7
Show More
setup.py
11 lines | 200 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""This calls the setup routine for Python 2 or 3 as required."""
import sys
if sys.version_info[0] >= 3:
from setup3 import main
else:
from setup2 import main
main()