Browse Source

src : use just one `function( $, undefined )` wrapper

pull/14/head
David DeSandro 14 years ago
parent
commit
b063859f13
  1. 15
      jquery.isotope.js

15
jquery.isotope.js

@ -143,8 +143,9 @@ window.Modernizr = window.Modernizr || (function(window,doc,undefined){
// ========================= jQuery transform extensions =============================== // ========================= jQuery transform extensions ===============================
(function($){
// jQuery
(function( $, undefined ){
$.optoTransform = { $.optoTransform = {
@ -265,8 +266,6 @@ window.Modernizr = window.Modernizr || (function(window,doc,undefined){
} }
})( jQuery );
/*! /*!
@ -278,7 +277,6 @@ window.Modernizr = window.Modernizr || (function(window,doc,undefined){
* http://docs.jquery.com/License * http://docs.jquery.com/License
* *
*/ */
(function($){
var $event = $.event, var $event = $.event,
resizeTimeout; resizeTimeout;
@ -309,15 +307,13 @@ window.Modernizr = window.Modernizr || (function(window,doc,undefined){
return fn ? this.bind( "smartresize", fn ) : this.trigger( "smartresize", ["execAsap"] ); return fn ? this.bind( "smartresize", fn ) : this.trigger( "smartresize", ["execAsap"] );
}; };
})( jQuery );
/************************************************* /*************************************************
** jQuery Isotope version 0.1 ** jQuery Isotope version 0.1
** Copyright David DeSandro ** Copyright David DeSandro
**************************************************/ **************************************************/
(function( $, undefined ) {
// our "Widget" object constructor // our "Widget" object constructor
$.Isotope = function( options, element ){ $.Isotope = function( options, element ){
@ -1235,10 +1231,6 @@ window.Modernizr = window.Modernizr || (function(window,doc,undefined){
})( jQuery );
/*! /*!
* jQuery UI Widget 1.8.5 * jQuery UI Widget 1.8.5
* *
@ -1248,7 +1240,6 @@ window.Modernizr = window.Modernizr || (function(window,doc,undefined){
* *
* http://docs.jquery.com/UI/Widget * http://docs.jquery.com/UI/Widget
*/ */
(function( $, undefined ) {
$.widget = $.widget || {}; $.widget = $.widget || {};

Loading…
Cancel
Save