forked from weblab/cornerstone
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed rogue closing div. commenting out unused color options. updating sticky footer so it doesn't throw errors in dashboard. Some of josh changes.
- Loading branch information
andrewmbacon
committed
Aug 12, 2014
1 parent
8712564
commit 02f8de1
Showing
11 changed files
with
99 additions
and
103 deletions.
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
Empty file.
Empty file.
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
Empty file.
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 |
---|---|---|
@@ -1,5 +1,15 @@ | ||
jQuery(document).ready(function($) { | ||
$('#accordion-section-layout_builder .ui-slider-handle').each(function(){ | ||
$(this).addClass('button button-primary'); | ||
}); | ||
jQuery(document).ready(function($) { | ||
$('#accordion-section-layout_builder .ui-slider-handle').each(function(){ | ||
$(this).addClass('button button-primary'); | ||
}); | ||
|
||
var path = window.location.pathname; | ||
if( path.split('/').indexOf('widgets.php') != -1 ){ | ||
$('.widgets-holder-wrap.sidebar-sidebar').each(function(i){ | ||
if( !($(this['children'][0]).is(":visible")) ){ | ||
$(this).css('display', 'none'); | ||
} | ||
}); | ||
} | ||
|
||
}); |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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