「MediaWiki:Common.js」の版間の差分

編集の要約なし
編集の要約なし
編集の要約なし
113行目: 113行目:
   if ( typeof(NIJC_WindowOnLoad) == "function" )
   if ( typeof(NIJC_WindowOnLoad) == "function" )
     NIJC_WindowOnLoad();
     NIJC_WindowOnLoad();
  if (typeof(JQuery.proxy) == 'undefined') {
    JQuery.extend({
      proxy: function(fn, thisObject) {
        return function() {
        return fn.apply(thisObject, arguments);
      }
    });
  }
   jQuery(function($){
   jQuery(function($){


if (typeof($.proxy) != 'undefined') {
  $.prototype.proxy = function(fn, thisObject) {
    return function() {
      return fn.apply(thisObject, arguments);
    };
  };
}


/**
/**