##// END OF EJS Templates
move some responsive bootstrap transitions...
move some responsive bootstrap transitions - `-md-` puts the transition at 970px - `-sm-` puts the transition at 768px I moved most of the `md` transitions to `sm`, which seems more reasonable. I also moved the cluster list to `xs` because the columns will never be wider than a dozen or so characters.

File last commit:

r17322:27b6119f
r17358:4aea6271
Show More
events.js
24 lines | 696 B | application/javascript | JavascriptLexer
// Copyright (c) IPython Development Team.
// Distributed under the terms of the Modified BSD License.
// Give us an object to bind all events to. This object should be created
// before all other objects so it exists when others register event handlers.
// To register an event handler:
//
// require(['base/js/events'], function (events) {
// events.on("event.Namespace", function () { do_stuff(); });
// });
define(['base/js/namespace', 'jquery'], function(IPython, $) {
"use strict";
var Events = function () {};
var events = new Events();
// Backwards compatability.
IPython.Events = Events;
IPython.events = events;
return $([events]);
});