Blame view

bower_components/jquery/src/deprecated.js 223 Bytes
c5169e0e   Renato De Donato   a new hope
1
2
3
  define([
  	"./core",
  	"./traversing"
74249687   Luigi Serra   Cross browser con...
4
5
  ], function( jQuery ) {
  
c5169e0e   Renato De Donato   a new hope
6
7
8
9
  // The number of elements contained in the matched element set
  jQuery.fn.size = function() {
  	return this.length;
  };
74249687   Luigi Serra   Cross browser con...
10
11
12
  
  jQuery.fn.andSelf = jQuery.fn.addBack;
  
c5169e0e   Renato De Donato   a new hope
13
  });