Actions

MediaWiki

Common.js: Difference between revisions

From LimeSurvey Manual

No edit summary
(Replaced content with "jQuery( document ).ready(function() { jQuery("#partnerbanner").prependTo("#bodyContent"); });")
Tag: Replaced
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
  WebFontConfig = {
jQuery( document ).ready(function() {
    google: { families: [ 'Special+Elite::latin', 'Sintony::latin,latin-ext' ] }
jQuery("#partnerbanner").prependTo("#bodyContent");
  };
});
  (function() {
    var wf = document.createElement('script');
    wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
      '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
    wf.type = 'text/javascript';
    wf.async = 'true';
    var s = document.getElementsByTagName('script')[0];
    s.parentNode.insertBefore(wf, s);
  })();

Latest revision as of 15:33, 11 December 2019

jQuery( document ).ready(function() {
jQuery("#partnerbanner").prependTo("#bodyContent");
});