Small feature for uploading using a bookmark.
This commit is contained in:
parent
db59cb14af
commit
f93b86261e
@ -63,7 +63,8 @@ class UploadTheme extends Themelet {
|
|||||||
|
|
||||||
if($tl_enabled) {
|
if($tl_enabled) {
|
||||||
$link = make_http(make_link("upload"));
|
$link = make_http(make_link("upload"));
|
||||||
$title = "Upload to " . $config->get_string('title');
|
$home = make_http(make_link());
|
||||||
|
$title = $config->get_string('title');
|
||||||
|
|
||||||
if($config->get_bool('nice_urls')){
|
if($config->get_bool('nice_urls')){
|
||||||
$delimiter = '?';
|
$delimiter = '?';
|
||||||
@ -71,9 +72,9 @@ class UploadTheme extends Themelet {
|
|||||||
$delimiter = '&';
|
$delimiter = '&';
|
||||||
}
|
}
|
||||||
|
|
||||||
$html .= '<p><a href="javascript:location.href="' .
|
$js='javascript:(function(){if(typeof window=="undefined"||!window.location||window.location.href=="about:blank"){window.location="'. $home .'";}else if(typeof document=="undefined"||!document.body){window.location="'. $home .'?url="+encodeURIComponent(window.location.href);} else if(window.location.href.match("\/\/'. $_SERVER["HTTP_HOST"] .'.*")){alert("You are already at '. $title .'!");} else{var tags=prompt("Please enter tags","tagme");if(tags!=""&&tags!=null){var link="'. $link . $delimiter .'url="+location.href+"&tags="+tags;var w=window.open(link,"_blank");}}})();';
|
||||||
$link . $delimiter . 'url="+location.href+"&tags="+prompt("enter tags")">' .
|
|
||||||
$title . '</a> (Drag & drop onto your bookmarks toolbar, then click when looking at an image)';
|
$html .= '<p><a href=\''.$js.'\'>Upload to '.$title.'</a> (Drag & drop onto your bookmarks toolbar, then click when looking at an image)';
|
||||||
}
|
}
|
||||||
|
|
||||||
$page->set_title("Upload");
|
$page->set_title("Upload");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user