claro-8.x-1.x-dev/js/ajax.js
js/ajax.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | /** * DO NOT EDIT THIS FILE. * See the following change record for more information, * @preserve **/ ( function (Drupal) { Drupal.theme.ajaxProgressIndicatorFullscreen = function () { return '<div class="ajax-progress ajax-progress--fullscreen"><div class="ajax-progress__throbber ajax-progress__throbber--fullscreen"> </div></div>' ; }; Drupal.theme.ajaxProgressThrobber = function (message) { var messageMarkup = typeof message === 'string' ? Drupal.theme( 'ajaxProgressMessage' , message) : '' ; var throbber = '<div class="ajax-progress__throbber"> </div>' ; return '<div class="ajax-progress ajax-progress--throbber">' + throbber + messageMarkup + '</div>' ; }; Drupal.theme.ajaxProgressMessage = function (message) { return '<div class="ajax-progress__message">' + message + '</div>' ; }; })(Drupal); |