15 lines
460 B
JavaScript
15 lines
460 B
JavaScript
/*$(document).ready(function() {
|
|
$(".media_type_selector").on("click", function() {
|
|
console.log("hello");
|
|
console.log(location.hash);
|
|
if (!$(this).hasClass("selected")) {
|
|
//AIRTIME.library.selectNone();
|
|
$(".media_type_selector").each(function () {
|
|
$(this).removeClass("selected");
|
|
});
|
|
$(this).addClass("selected");
|
|
oTable.fnDraw();
|
|
}
|
|
});
|
|
});*/
|