From 8428cce209171ddc4902015999906181c095ac83 2014-09-17 21:31:55 From: Sylvain Corlay Date: 2014-09-17 21:31:55 Subject: [PATCH] rename to on_atomic_change --- diff --git a/IPython/html/static/widgets/js/widget.js b/IPython/html/static/widgets/js/widget.js index f8b31aa..fbb6625 100644 --- a/IPython/html/static/widgets/js/widget.js +++ b/IPython/html/static/widgets/js/widget.js @@ -266,8 +266,8 @@ define(["widgets/js/manager", } }, - on_change: function(keys, callback, context) { - // on_change(["key1", "key2"], foo, context) differs from + on_atomic_change: function(keys, callback, context) { + // on__atomic_change(["key1", "key2"], foo, context) differs from // on("change:key1 change:key2", foo, context). // If the widget attributes key1 and key2 are both modified, // the second form will result in foo being called twice