Skip to content

Commit 30f9858

Browse files
author
Philip Guo
committed
cleaner naming
1 parent d9d647d commit 30f9858

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

PyTutorGAE/js/edu-python-tutor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2727
*/
2828

2929

30-
// Pre-reqs: edu-python.js and jquery.ba-bbq.min.js should be imported BEFORE this file
30+
// Pre-reqs: pytutor.js and jquery.ba-bbq.min.js should be imported BEFORE this file
3131

3232
var appMode = 'edit'; // 'edit', 'visualize', or 'grade' (only for question.html)
3333

@@ -66,7 +66,7 @@ $(document).ready(function() {
6666
$(window).bind("hashchange", function(e) {
6767
appMode = $.bbq.getState('mode'); // assign this to the GLOBAL appMode
6868

69-
// globals defined in edu-python.js
69+
// globals defined in pytutor.js
7070
preseededCode = $.bbq.getState('code');
7171

7272
if (!preseededCurInstr) { // TODO: kinda gross hack
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1572,7 +1572,7 @@ ExecutionVisualizer.prototype.renderDataStructures = function() {
15721572
// Utilities
15731573

15741574

1575-
/* colors - see edu-python.css */
1575+
/* colors - see pytutor.css */
15761576
var lightYellow = '#F5F798';
15771577
var lightLineColor = '#FFFFCC';
15781578
var errorColor = '#F87D76';

PyTutorGAE/tutor.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@
5555
<script type="text/javascript" src="js/d3.v2.min.js"></script>
5656

5757
<!-- my own code -->
58-
<script type="text/javascript" src="js/edu-python.js"></script>
58+
<script type="text/javascript" src="js/pytutor.js"></script>
5959
<script type="text/javascript" src="js/edu-python-tutor.js"></script>
6060

61-
<link rel="stylesheet" href="css/edu-python.css"/>
61+
<link rel="stylesheet" href="css/pytutor.css"/>
6262

6363

6464
</head>

0 commit comments

Comments
 (0)