25 lines
598 B
JavaScript
25 lines
598 B
JavaScript
function changeDate(date)
|
|
{
|
|
date = date.replace(/\-/g, '');
|
|
link = createLink('my', 'todo', 'type=' + date);
|
|
location.href=link;
|
|
}
|
|
|
|
|
|
$(function()
|
|
{
|
|
// Support hash start with todo-1
|
|
var hash = window.location.hash.toLowerCase();
|
|
if(hash.indexOf('#todo-') === 0)
|
|
{
|
|
var todoId = hash.substr(6);
|
|
var url = createLink('todo', 'view', 'id=' + todoId + '&from=my', '', 'yes');
|
|
var $a = $('<a/>');
|
|
$a.attr({href: url}).modalTrigger(
|
|
{
|
|
'data-toggle': 'modal',
|
|
type: 'iframe'
|
|
}).trigger('click');
|
|
}
|
|
});
|