This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7.6k
FOR REVIEW: Update to jQuery 2.0.1, LESS 1.3.3 and Bootstrap 2.3.1 #4054
Merged
Merged
Changes from all commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
ff8d55c
Updated bootstrap to 2.3.1 and less to 1.3.3 (needed for bootstrap)
WebsiteDeveloper 54394b0
Fixed Context Menu
WebsiteDeveloper 6c23c49
Three more migration fixes
WebsiteDeveloper de6c29d
Fixed a few UI issues and removed unused responsive files
WebsiteDeveloper b276e04
Fixed missed log statement
WebsiteDeveloper ceb6297
Fix scroller-shadow
WebsiteDeveloper c21ab02
Fix install extensions unit tests
WebsiteDeveloper b34eb06
Fixed find and JSLint UI
WebsiteDeveloper ceca9bc
Fixed modal layout issues
WebsiteDeveloper ad63c37
Fix for menu positioning
WebsiteDeveloper c58b5e6
Parsed LESS to CSS and load the css file
WebsiteDeveloper 026f9dd
Moved dropdown menu styles to fix recent projects UI
WebsiteDeveloper 9c6a57e
Added data-button-id to the dialog templates
WebsiteDeveloper 43d5435
Fixes for ContextMenus and Dialogs
WebsiteDeveloper 180ad2a
Merge branch 'WebsiteDeveloper-bootstrap' into jQueryLESSBootstrap
dangoor 93b629d
Merge branch 'dangoor/jquery-deprecations' into jQueryLESSBootstrap
dangoor 1978f85
Update to jQuery 2.0.1
dangoor 1cb9550
Update to jQuery 2.0.1
dangoor d8b9421
Merge branch 'dangoor/jQuery-2.0' into jQueryLESSBootstrap
dangoor fd77d76
switch from .andSelf to .addBack
dangoor 3da4dcb
Merge branch 'dangoor/jQuery-2.0' into jQueryLESSBootstrap
dangoor c04cf47
Fixes after review
WebsiteDeveloper ec69402
Merge branch 'WebsiteDeveloper-bootstrap' into jQueryLESSBootstrap
dangoor 2e777df
this line apparently had a bad merge
dangoor 72f652f
Update twipsy-mod to use tooltip styles and work with jQuery 2.0
gruehle 6cc7b77
Use .val() instead of .attr('value')
gruehle bb5a7f1
Fix most of the inline color editor unit tests. One is still failing.
gruehle 79f799a
Merge with master
gruehle 305a196
Fix the extension manager tests.
dangoor c1bdc00
Fix deprecated isRejected() calls in UrlCodeHints.
dangoor 30e3c12
Merge branch 'master' into jQueryLESSBootstrap
dangoor 435c3e9
Fix Inline Color Editor use of .attr vs. .val.
dangoor 0f747ca
Convert .attr to .prop for "disabled" (and one case of "val").
dangoor 81eff5f
Code cleanup
gruehle d454d87
Remove data-dismiss
gruehle c3acbd6
Remove redundant dropdown("toggle") calls
gruehle 26e12d6
Use updated version of $.support.transition
gruehle File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// | ||
// Accordion | ||
// -------------------------------------------------- | ||
|
||
|
||
// Parent container | ||
.accordion { | ||
margin-bottom: @baseLineHeight; | ||
} | ||
|
||
// Group == heading + body | ||
.accordion-group { | ||
margin-bottom: 2px; | ||
border: 1px solid #e5e5e5; | ||
.border-radius(@baseBorderRadius); | ||
} | ||
.accordion-heading { | ||
border-bottom: 0; | ||
} | ||
.accordion-heading .accordion-toggle { | ||
display: block; | ||
padding: 8px 15px; | ||
} | ||
|
||
// General toggle styles | ||
.accordion-toggle { | ||
cursor: pointer; | ||
} | ||
|
||
// Inner needs the styles because you can't animate properly with any styles on the element | ||
.accordion-inner { | ||
padding: 9px 15px; | ||
border-top: 1px solid #e5e5e5; | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
@dangoor - Why was this change necessary? I didn't see anything in the migration guides about it. Is it because
.css()
is supposed to get the computed property (in pixels)?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.
Yeah, this isn't in the migration guides, but was a change in jQuery 1.8. The css() function always returns pixel values.
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.
When I ran into this issue in my original pull for the jQuery 2.0 upgrade, it seems that jQuery makes no guarantee about the units it will return (in my findings, the left value returned in pixels, but the bottom value returned the expected [as authored] percentage). Not sure if it has since been updated to always return pixels?