Skip to content

Commit b220f6d

Browse files
authored
Build: Fix AMD dependencies in curCSS
A leftover `rboxStyle` was left in the wrapper parameters but not in the dependency array, causing `getStyles` to be undefined in AMD mode. Since `rboxStyle` is no longer used, it's now removed. Ref gh-4347 Closes gh-4380
1 parent cf84696 commit b220f6d

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

src/css/curCSS.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ define( [
22
"../core",
33
"../core/isAttached",
44
"./var/getStyles"
5-
], function( jQuery, isAttached, rboxStyle, getStyles ) {
5+
], function( jQuery, isAttached, getStyles ) {
66

77
"use strict";
88

src/css/var/rboxStyle.js

-7
This file was deleted.

0 commit comments

Comments
 (0)