Merge branch 'saas-dev' of https://github.com/sourcefabric/Airtime into saas-dev

Conflicts:
	airtime_mvc/public/js/airtime/library/spl.js
This commit is contained in:
drigato 2015-09-09 13:55:27 -04:00
commit bd4fc62e04
6 changed files with 28 additions and 19 deletions

View file

@ -23,13 +23,13 @@
@media screen and (max-width: 1600px) {
#library_display_wrapper button:not(.dropdown-toggle):not(.btn-new) > span,
#show_builder button:not(.dropdown-toggle):not(.btn-new) > span,
#show_builder #sb_submit > span {
#show_builder_table_wrapper button:not(.dropdown-toggle):not(.btn-new) > span,
#show_builder_table_wrapper #sb_submit > span {
display: none;
}
#library_display_wrapper button:not(.dropdown-toggle):not(.btn-new) > i,
#show_builder button:not(.dropdown-toggle):not(.btn-new) > i,
#show_builder #sb_submit > i {
#show_builder_table_wrapper button:not(.dropdown-toggle):not(.btn-new) > i,
#show_builder_table_wrapper #sb_submit > i {
margin-right: 0 !important;
}
}

View file

@ -3698,12 +3698,12 @@ button.btn-icon-text > i.icon-white {
left: 152px;
top: 102px;
bottom: 0; /* Account for scrollbars */
min-width: 130px;
min-width: 150px;
border-right: 1px solid #5b5b5b;
background: #242424;
font-size: 14px;
color: #cecece;
padding: 10px;
padding: 10px 0;
z-index: 1;
-webkit-transition: top 0.2s linear;
@ -3713,7 +3713,11 @@ button.btn-icon-text > i.icon-white {
}
#sub-menu h3 {
padding: 0;
padding: 0 10px 10px;
}
#sub-menu hr {
margin: 0 5px;
}
#sub-menu .navigation {
@ -3721,12 +3725,17 @@ button.btn-icon-text > i.icon-white {
padding-left: 0;
}
#sub-menu .navigation li {
padding-bottom: 10px;
#sub-menu .navigation li.active {
color: #fff;
background-color: #333;
border-right: 1px solid #1ADEFF;
margin-right: -1px;
}
#sub-menu .navigation a {
display: block;
color: #cecece;
padding: 10px;
text-decoration: none;
}

View file

@ -406,7 +406,7 @@ var AIRTIME = (function(AIRTIME){
var empty = $pl.find(".spl_empty");
if (!show || empty.length > 0) {
$pl.find("#spl_crossfade").hide();
$pl.find("#spl_crossfade").attr("disabled", "disabled");
} else {
//get list of playlist contents
var list = contents.children();
@ -416,9 +416,9 @@ var AIRTIME = (function(AIRTIME){
var last = list.last();
if (first.find(':first-child').children().attr('blockid') !== undefined &&
last.find(':first-child').children().attr('blockid') !== undefined) {
$pl.find("#spl_crossfade").hide();
$pl.find("#spl_crossfade").attr("disabled", "disabled");
} else {
$pl.find("#spl_crossfade").show();
$pl.find("#spl_crossfade").removeAttr("disabled");
}
}
@ -1094,7 +1094,7 @@ var AIRTIME = (function(AIRTIME){
aSelected = AIRTIME.library.getSelectedData();
for (i = 0, length = aSelected.length; i < length; i++) {
console.log(aSelected[i]);
//console.log(aSelected[i]);
aItems.push(new Array(aSelected[i].id, aSelected[i].ftype));
}