initial commit

This commit is contained in:
Ben Ramey
2017-03-02 21:57:21 -06:00
commit fd8ad64063
22097 changed files with 1960930 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
$(function() {
$("a#pae_film_link").click(function(e){
$("div.pae-film").slideDown("slow");
e.preventDefault();
});
});

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,24 @@
// currently not in use because there are no tabs
// on the schedule page
$(function() {
$("table.schedule-table tr.master").click(function(e) {
var detailId = $(this).attr("detail");
var detailDiv = $("div[master="+detailId+"]");
$(this).toggleClass("master-selected");
if($(this).hasClass("master-selected"))
detailDiv.slideDown();
else
detailDiv.slideUp();
});
$("select.tabs").change(function(e) {
if($(this).val() === "")
return;
var tabid = $("option:contains("+$(this).val()+")", this).attr("tabid");
$("div.tab-content").hide();
$("div.tab-content[tabid="+tabid+"]").show();
}).change();
});