-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Add css-dependency-comments based on jQuery Mobile #1440
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,9 @@ | |
//>>description: Enables resize functionality for any element. | ||
//>>docs: http://api.jqueryui.com/resizable/ | ||
//>>demos: http://jqueryui.com/resizable/ | ||
//>>css.structure: ../themes/base/core.css | ||
//>>css.structure: ../themes/base/resizable.css | ||
//>>css.theme: ../themes/base/theme.css | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this is the only interaction that needs the theme, since it uses icons. |
||
|
||
(function( factory ) { | ||
if ( typeof define === "function" && define.amd ) { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
//>>description: Enables items in a list to be sorted using the mouse. | ||
//>>docs: http://api.jqueryui.com/sortable/ | ||
//>>demos: http://jqueryui.com/sortable/ | ||
//>>css.structure: ../themes/base/sortable.css | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Out of scope of this PR, but would be good to figure out: Both |
||
|
||
(function( factory ) { | ||
if ( typeof define === "function" && define.amd ) { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,9 @@ | |
//>>description: Displays buttons to easily input numbers via the keyboard or mouse. | ||
//>>docs: http://api.jqueryui.com/spinner/ | ||
//>>demos: http://jqueryui.com/spinner/ | ||
//>>css.structure: ../themes/base/core.css | ||
//>>css.structure: ../themes/base/spinner.css | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing core.css |
||
//>>css.theme: ../themes/base/theme.css | ||
|
||
(function( factory ) { | ||
if ( typeof define === "function" && define.amd ) { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are CSS dependencies inherited from JS dependencies? In this case, does dialog depend on
button.css
due to the AMD dependency tobutton.js
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, they are. In this case, yeap
button.css
will be included due to the AMD dependency tobutton.js
.