";
@@ -31,7 +31,7 @@ define([
title: "Welcome to the Notebook Tour",
placement: 'bottom',
orphan: true,
- content: "You can use the left and right arrow keys to go backwards and forwards.",
+ content: "You can use the left and right arrow keys to go backwards and forwards."
}, {
element: "#notebook_name",
title: "Filename",
@@ -92,15 +92,15 @@ define([
title: "Kernel Indicator",
placement: 'bottom',
onShow: function(tour) { events.trigger('status_idle.Kernel');},
- content: "This is the Kernel indicator. It looks like this when the Kernel is idle.",
+ content: "This is the Kernel indicator. It looks like this when the Kernel is idle."
}, {
element: "#kernel_indicator",
title: "Kernel Indicator",
placement: 'bottom',
onShow: function(tour) { events.trigger('status_busy.Kernel'); },
- content: "The Kernel indicator looks like this when the Kernel is busy.",
+ content: "The Kernel indicator looks like this when the Kernel is busy."
}, {
- element: ".icon-stop",
+ element: ".fa-stop",
placement: 'bottom',
title: "Interrupting the Kernel",
onHide: function(tour) { events.trigger('status_idle.Kernel'); },
@@ -108,14 +108,14 @@ define([
}, {
element: "#notification_kernel",
placement: 'bottom',
- onShow: function(tour) { $('.icon-stop').click(); },
+ onShow: function(tour) { $('.fa-stop').click(); },
title: "Notification Area",
content: "Messages in response to user actions (Save, Interrupt, etc) appear here."
}, {
title: "Fin.",
placement: 'bottom',
orphan: true,
- content: "This concludes the IPython Notebook User Interface tour.Tour. Happy hacking!",
+ content: "This concludes the IPython Notebook User Interface Tour. Happy hacking!"
}
];
@@ -156,7 +156,7 @@ define([
};
NotebookTour.prototype.toggle_pause_play = function () {
- $('#tour-pause').toggleClass('icon-pause icon-play');
+ $('#tour-pause').toggleClass('fa-pause fa-play');
};
NotebookTour.prototype.edit_mode = function() {