From dc0d3b42c9d2fa5afa7e9eac89cf96601a98416a Mon Sep 17 00:00:00 2001 From: Timmy Willison Date: Mon, 26 Aug 2013 22:54:17 -0400 Subject: [PATCH] Fix most of the broken tests in oldIE. Build order issue. - attr requires val for attaching to the nodeHook as a valHook for buttons --- src/attributes.js | 4 ++-- src/attributes/attr.js | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/attributes.js b/src/attributes.js index 82a806630..f25c96a40 100644 --- a/src/attributes.js +++ b/src/attributes.js @@ -1,6 +1,6 @@ define([ + "./attributes/val", "./attributes/attr", "./attributes/prop", - "./attributes/classes", - "./attributes/val" + "./attributes/classes" ]); diff --git a/src/attributes/attr.js b/src/attributes/attr.js index b282d1123..15239e0f8 100644 --- a/src/attributes/attr.js +++ b/src/attributes/attr.js @@ -2,6 +2,7 @@ define([ "../core", "../var/rnotwhite", "../var/strundefined", + "./val", "../selector", "../support" ], function( jQuery, rnotwhite, strundefined ) { -- 2.39.5