Skip to content

Commit

Permalink
Removed resize dependency entries.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Jackson authored and Paul Jackson committed Mar 5, 2013
1 parent 139b695 commit 7bd8872
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/js/workers/css3ie.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/* local reference */
_pe.fn.css3ie = {
type : 'plugin',
depends : (pe.ie > 0 && pe.ie < 9 ? ['pie', 'resize'] : []),
depends : (pe.ie > 0 && pe.ie < 9 ? ['pie'] : []),
_exec : function (elm) {
if (pe.mobile || !(pe.ie > 0 && pe.ie < 9)) {
return;
Expand Down
2 changes: 1 addition & 1 deletion src/js/workers/equalize.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/* local reference */
_pe.fn.equalize = {
type : 'plugin',
depends : (pe.mobile ? [] : ['equalheights', 'resize']),
depends : (pe.mobile ? [] : ['equalheights']),
_exec : function (elm) {
if (pe.mobile) {
return;
Expand Down
2 changes: 1 addition & 1 deletion src/js/workers/responsiveimg.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

_pe.fn.responsiveimg = {
type : 'plugin',
depends : ['picturefill', 'matchMedia', 'resize'],
depends : ['picturefill', 'matchMedia'],
_initialized : false,
_exec : function (elm) {
var w = window;
Expand Down

0 comments on commit 7bd8872

Please sign in to comment.