SAAS-948 - css tweaks
This commit is contained in:
parent
12c4e4a374
commit
fb1f22b913
7 changed files with 118 additions and 98 deletions
|
@ -1263,6 +1263,10 @@ $(document).ready(function() {
|
|||
$("a[href$='"+location.hash+"']").parent().addClass("selected");
|
||||
|
||||
$(window).on('hashchange', function() {
|
||||
// If we click Dashboard from one of the media views, do nothing
|
||||
if (!location.hash) {
|
||||
return;
|
||||
}
|
||||
$(".media_type_selector").each(function () {
|
||||
$(this).removeClass("selected");
|
||||
});
|
||||
|
@ -1270,6 +1274,8 @@ $(document).ready(function() {
|
|||
oTable.fnDraw();
|
||||
});
|
||||
|
||||
/* Overridden by hashchange function
|
||||
|
||||
$(".media_type_selector").on("click", function() {
|
||||
if (!$(this).hasClass("selected")) {
|
||||
AIRTIME.library.selectNone();
|
||||
|
@ -1280,6 +1286,7 @@ $(document).ready(function() {
|
|||
oTable.fnDraw();
|
||||
}
|
||||
});
|
||||
*/
|
||||
|
||||
$("#advanced-options").on("click", function() {
|
||||
resizeAdvancedSearch();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue