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,23 @@
K 25
svn:wc:ra_dav:version-url
V 42
/svn/!svn/ver/35/pae.co.at/trunk/htdocs/js
END
home.js
K 25
svn:wc:ra_dav:version-url
V 50
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/js/home.js
END
schedule.js
K 25
svn:wc:ra_dav:version-url
V 54
/svn/!svn/ver/35/pae.co.at/trunk/htdocs/js/schedule.js
END
jquery-1.2.6.min.js
K 25
svn:wc:ra_dav:version-url
V 62
/svn/!svn/ver/25/pae.co.at/trunk/htdocs/js/jquery-1.2.6.min.js
END

View File

@@ -0,0 +1,133 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/htdocs/js
http://barnabas/svn
2009-06-02T04:01:41.565441Z
35
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
home.js
file
2010-07-31T05:41:45.000000Z
d5aff2ec2bac3024f2835073061e3f9a
2009-05-28T02:14:48.119086Z
25
ben
131
tiny_mce
dir
schedule.js
file
2010-07-31T05:41:45.000000Z
d97d218c5c3dd88447f60330d327f9c1
2009-06-02T04:01:41.565441Z
35
ben
679
jquery-1.2.6.min.js
file
2010-07-31T05:41:45.000000Z
a9331828c517ac5d97f93b3cfdbcc9bc
2009-05-28T02:14:48.119086Z
25
ben
55774

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();
});