Sha256: 443da624c8bbbcd56268b33a5318eb0e90d1747a7fa8dc58e6bca66457db3ad4
Contents?: true
Size: 1.64 KB
Versions: 3
Compression:
Stored size: 1.64 KB
Contents
/*global define: true */ /*! * This file is part of Aloha Editor Project http://aloha-editor.org * Copyright © 2010-2011 Gentics Software GmbH, aloha@gentics.com * Contributors http://aloha-editor.org/contribution.php * Licensed unter the terms of http://www.aloha-editor.org/license.html *//* * Aloha Editor is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version.* * * Aloha Editor is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ (function () { /** * This requirejs module loader loads jquery plugins and wraps them */ define({ load: function (name, require, load, config) { var url = require.toUrl(name + '.js'); require(['aloha/jquery'], function (value) { var $ = value; $.ajax({ type: 'GET', url: url, cache: true, dataType: 'text', success: function (plugin) { // plugin = '(function(jQuery) { var $ = jQuery;\n' + plugin + '}(window.alohaQuery));'; plugin = 'define([\'aloha/jquery\'], function(jQuery) { var $ = jQuery;\n' + plugin + '});'; load.fromText(name, plugin); require([name], function (value) { load(value); }); } }); }); } }); }());
Version data entries
3 entries across 3 versions & 1 rubygems