##// END OF EJS Templates
Backport PR #8059: deselect all when clicking partial checkbox...
Backport PR #8059: deselect all when clicking partial checkbox stores state in `data('indeterminate')` instead of `prop('indeterminate')` because the property is cleared before the event handler is called closes #8057

File last commit:

r20554:5f9d376a
r20877:d0b69952
Show More
namespace.js
10 lines | 265 B | application/javascript | JavascriptLexer
Jonathan Frederic
Make page.html require.js friendly.
r17188 // Copyright (c) IPython Development Team.
// Distributed under the terms of the Modified BSD License.
Jonathan Frederic
Fixed global IPython namespace.
r17191 var IPython = IPython || {};
Jonathan Frederic
Make page.html require.js friendly.
r17188 define([], function(){
Matthias Bussonnier
Some cleanup unused code and missig use-strict
r18991 "use strict";
Thomas Kluyver
back to development
r20554 IPython.version = "3.1.0-dev";
Min RK
ensure IPython._target is defined
r20326 IPython._target = '_blank';
Jonathan Frederic
Make page.html require.js friendly.
r17188 return IPython;
});