##// END OF EJS Templates
Fixing main toolbar area and cleaning up jquery themes.
Brian Granger -
Show More
@@ -793,10 +793,14 b' $(document).ready(function () {'
793 }
793 }
794 });
794 });
795
795
796 $("ul#main_menu").wijmenu({animation:{animated: "slide", duration: 100, easing: null}});
797 IPYTHON.notebook = new Notebook('div.notebook');
796 IPYTHON.notebook = new Notebook('div.notebook');
798 IPYTHON.notebook.insert_code_cell_after();
797 IPYTHON.notebook.insert_code_cell_after();
799
798
799 $("#menu_tabs").tabs();
800
801 $("#help_toolbar").buttonset();
802 $("#kernel_toolbar").buttonset();
803
800 $("#move_cell").buttonset();
804 $("#move_cell").buttonset();
801 $("#move_up").button("option", "icons", {primary:"ui-icon-arrowthick-1-n"});
805 $("#move_up").button("option", "icons", {primary:"ui-icon-arrowthick-1-n"});
802 $("#move_up").button("option", "text", false);
806 $("#move_up").button("option", "text", false);
@@ -5,9 +5,13 b''
5 <meta charset="utf-8">
5 <meta charset="utf-8">
6
6
7 <title>IPython Notebook</title>
7 <title>IPython Notebook</title>
8
8 <link rel="stylesheet" href="static/css/notebook.css" type="text/css" />
9 <link rel="stylesheet" href="static/css/notebook.css" type="text/css" />
9 <link rel="stylesheet" href="static/jquery/css/jquery.wijmo-open.1.1.3.css" type="text/css" />
10
10 <link rel="stylesheet" href="static/jquery/css/themes/aristo/jquery-wijmo.css" type="text/css" />
11 <link rel="stylesheet" href="static/jquery/css/themes/aristo/jquery-wijmo.css" type="text/css" />
12 <!-- <link rel="stylesheet" href="static/jquery/css/themes/rocket/jquery-wijmo.css" type="text/css" /> -->
13 <!-- <link rel="stylesheet" href="static/jquery/css/themes/smoothness/jquery-ui-1.8.11.custom.css" type="text/css" /> -->
14
11 <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" charset="utf-8"></script>
15 <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" charset="utf-8"></script>
12
16
13 </head>
17 </head>
@@ -18,59 +22,55 b''
18 <span id="ipython_notebook"><h1>IPython Notebook</h1></span>
22 <span id="ipython_notebook"><h1>IPython Notebook</h1></span>
19 </div>
23 </div>
20
24
25
21 <div id="tools">
26 <div id="tools">
22
27
23 <ul id="main_menu">
28 <div id="menu_tabs">
24 <li><a>Cell</a>
29 <ul>
25 <ul>
30 <li><a href="#cell_tab">Cell</a></li>
26 <li><a>Run</a></li>
31 <li><a href="#kernel_tab">Kernel</a></li>
27 <li><a>Move up</a></li>
32 <li><a href="#help_tab">Help</a></li>
28 <li><a>Move down</a></li>
33 </ul>
29 <li><a>Delete</a></li>
34 <div id="cell_tab">
30 </ul>
35 <span id="cell_toolbar">
31 </li>
36 <span id="move_cell">
32 <li><a>Kernel</a>
37 <button id="move_up">Move up</button>
33 <ul>
38 <button id="move_down">Move down</button>
34 <li><a>Interrupt</a></li>
39 </span>
35 <li><a>Restart</a></li>
40 <span id="insert_delete">
36 </ul>
41 <button id="insert_cell_before">Before</button>
37 </li>
42 <button id="insert_cell_after">After</button>
38 <li><a>Help</a>
43 <button id="delete_cell">Delete</button>
39 <ul>
44 </span>
40 <li><a>Notebook help</a></li>
45 <span id="cell_type">
41 <li></li>
46 <button id="to_code">Code</button>
42 <li><a href="http://docs.python.org" target="_blank">Python Docs</a></li>
47 <button id="to_text">Text</button>
43 <li><a href="http://ipython.github.com/ipython-doc/dev/index.html" target="_blank">IPython Docs</a></li>
48 </span>
44 <li><a href="http://docs.scipy.org/doc/numpy/reference/" target="_blank">NumPy Docs</a></li>
49 <span id="sort">
45 <li><a href="http://docs.scipy.org/doc/scipy/reference/" target="_blank">SciPy Docs</a></li>
50 <button id="sort_cells">Sort</button>
46 <li><a href="http://docs.sympy.org/dev/index.html" target="_blank">SymPy Docs</a></li>
51 </span>
47 </ul>
52 <span id="toggle">
48 </li>
53 <button id="collapse">Collapse</button>
49 </ul>
54 <button id="expand">Expand</button>
50
55 </span>
51 <div id="toolbar">
52 <span id="main_toolbar">
53 <span id="move_cell">
54 <button id="move_up">Move up</button>
55 <button id="move_down">Move down</button>
56 </span>
57 <span id="insert_delete">
58 <button id="insert_cell_before">Before</button>
59 <button id="insert_cell_after">After</button>
60 <button id="delete_cell">Delete</button>
61 </span>
62 <span id="cell_type">
63 <button id="to_code">Code</button>
64 <button id="to_text">Text</button>
65 </span>
56 </span>
66 <span id="sort">
57 </div>
67 <button id="sort_cells">Sort</button>
58 <div id="kernel_tab">
59 <span id="kernel_toolbar">
60 <button>Interrupt</button>
61 <button>Restart</button>
68 </span>
62 </span>
69 <span id="toggle">
63 </div>
70 <button id="collapse">Collapse</button>
64 <div id="help_tab">
71 <button id="expand">Expand</button>
65 <span id="help_toolbar">
66 <button><a href="http://docs.python.org" target="_blank">Python</a></button>
67 <button><a href="http://ipython.github.com/ipython-doc/dev/index.html" target="_blank">IPython</a></button>
68 <button><a href="http://matplotlib.sourceforge.net/" target="_blank">Matplotlib</a></button>
69 <button><a href="http://docs.scipy.org/doc/numpy/reference/" target="_blank">NumPy</a></button>
70 <button><a href="http://docs.scipy.org/doc/scipy/reference/" target="_blank">SciPy</a></button>
71 <button><a href="http://docs.sympy.org/dev/index.html" target="_blank">SymPy</a></button>
72 </span>
72 </span>
73 </span>
73 </div>
74 </div>
74 </div>
75
75
76 </div>
76 </div>
@@ -78,9 +78,8 b''
78 <div class="notebook"></div>
78 <div class="notebook"></div>
79
79
80 <script src="static/jquery/js/jquery-1.5.1.min.js" type="text/javascript" charset="utf-8"></script>
80 <script src="static/jquery/js/jquery-1.5.1.min.js" type="text/javascript" charset="utf-8"></script>
81 <script src="static/jquery/js/jquery-ui-1.8.10.custom.min.js" type="text/javascript" charset="utf-8"></script>
81 <script src="static/jquery/js/jquery-ui-1.8.11.custom.min.js" type="text/javascript" charset="utf-8"></script>
82 <script src="static/jquery/js/jquery.autogrow.js" type="text/javascript" charset="utf-8"></script>
82 <script src="static/jquery/js/jquery.autogrow.js" type="text/javascript" charset="utf-8"></script>
83 <script src="static/jquery/js/jquery.wijmo-open.1.1.3.min.js" type="text/javascript" charset="utf-8"></script>
84 <script src="static/js/notebook.js" type="text/javascript" charset="utf-8"></script>
83 <script src="static/js/notebook.js" type="text/javascript" charset="utf-8"></script>
85
84
86 </body>
85 </body>
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed
NO CONTENT: file was removed
This diff has been collapsed as it changes many lines, (574 lines changed) Show them Hide them
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now