mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-22 20:59:55 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6206 201d5d3c-b55e-5fd7-737f-ddc643e51545
12 lines
420 B
JavaScript
12 lines
420 B
JavaScript
function moveHistory(fo_obj) {
|
|
if(!fo_obj.entry.value) return;
|
|
var url = current_url.setQuery('entry',fo_obj.entry.value);
|
|
if(typeof(xeVid)!='undefined') url = url.setQuery('vid',xeVid);
|
|
location.href=url;
|
|
}
|
|
|
|
function viewHistory(history_srl) {
|
|
var zone = jQuery('#historyContent'+history_srl);
|
|
if(zone.css('display')=='block') zone.css('display','none');
|
|
else zone.css('display','block');
|
|
}
|