/*! * 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 . */ (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); load(null); } }); }); } }); }());