From 7f7dda32c7f97859d299908627206b45e5cab6fd 2013-07-05 16:51:55 From: Paul Ivanov Date: 2013-07-05 16:51:55 Subject: [PATCH] Merge pull request #3548 from takluyver/save-icon Change to standard save icon in Notebook toolbar What used to be a hard drive image is now the more traditional floppy image --- diff --git a/IPython/html/static/notebook/js/maintoolbar.js b/IPython/html/static/notebook/js/maintoolbar.js index 81df069..1bf8690 100644 --- a/IPython/html/static/notebook/js/maintoolbar.js +++ b/IPython/html/static/notebook/js/maintoolbar.js @@ -26,7 +26,7 @@ var IPython = (function (IPython) { { id : 'save_b', label : 'Save and Checkpoint', - icon : 'icon-hdd', + icon : 'icon-save', callback : function () { IPython.notebook.save_checkpoint(); }