From d8635fc1cc7e768854e25e0e914277fb0d27c5db Mon Sep 17 00:00:00 2001 From: Sylvain Corlay Date: Fri, 26 Sep 2014 01:59:11 +0000 Subject: [PATCH] on_atomic_change -> on_some_change --- IPython/html/static/widgets/js/widget.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IPython/html/static/widgets/js/widget.js b/IPython/html/static/widgets/js/widget.js index 4345a411f..2c3cec4e5 100644 --- a/IPython/html/static/widgets/js/widget.js +++ b/IPython/html/static/widgets/js/widget.js @@ -269,8 +269,8 @@ define(["widgets/js/manager", } }, - on_atomic_change: function(keys, callback, context) { - // on__atomic_change(["key1", "key2"], foo, context) differs from + on_some_change: function(keys, callback, context) { + // on_some_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