bigbluebutton-Github/labs/bbb-html5-client/public/js/lib/raphael/raphael.amd.js

19 lines
1.4 KiB
JavaScript
Raw Normal View History

// ┌─────────────────────────────────────────────────────────────────────┐ \\
// │ "Raphaël 2.0.2" - JavaScript Vector Library │ \\
// ├─────────────────────────────────────────────────────────────────────┤ \\
// │ Copyright (c) 2008-2011 Dmitry Baranovskiy (http://raphaeljs.com) │ \\
// │ Copyright (c) 2008-2011 Sencha Labs (http://sencha.com) │ \\
// │ Licensed under the MIT (http://raphaeljs.com/license.html) license. │ \\
// └─────────────────────────────────────────────────────────────────────┘ \\
// This module combines the core raphael module with the svg and vml modules
// to return a complete raphael object. Apps that want to use Raphaël as an
// AMD module should reference this file.
//
// Apps that want to load a plain old script that exports window.raphael
// should use the combined raphael.js file.
define(['./raphael.core', './raphael.svg', './raphael.vml'], function (R) {
return R;
});