Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
matplotlib / backends / web_backend / js / mpl_tornado.js
Size: Mime:
/* This .js file contains functions for matplotlib's built-in
   tornado-based server, that are not relevant when embedding WebAgg
   in another web application. */

/* exported mpl_ondownload */
function mpl_ondownload(figure, format) {
    window.open(figure.id + '/download.' + format, '_blank');
}