ep_bookmark
Advanced tools
Comparing version 1.2.1 to 1.3.0
{ | ||
"name": "ep_bookmark", | ||
"version": "1.2.1", | ||
"version": "1.3.0", | ||
"description": "Etherpad plugin for users to save a list of bookmarks of their visited pads locally in the browser's local storage", | ||
@@ -5,0 +5,0 @@ "author": "gared (STEFAN MUELLER) <stefan@stefans-entwicklerecke.de>", |
@@ -1,6 +0,12 @@ | ||
#Etherpad plugin: ep_bookmark | ||
# Etherpad plugin: ep_bookmark | ||
Etherpad plugin for users to save a list of bookmarks of their visited pads locally in the browser's local storage. | ||
![Etherpad plugin ep_bookmark](https://user-images.githubusercontent.com/913630/140609984-d7763cac-094f-49b8-8070-6fc2de1e086a.png) | ||
## Installation | ||
Use the Etherpad `/admin` interface | ||
## Usage | ||
[Read more](https://github.com/Gared/ep_bookmark/wiki) | ||
![Etherpad plugin ep_bookmark](http://www.stefans-entwicklerecke.de/wp-content/uploads/2015/03/screenshot_ep_bookmark.png) |
@@ -23,3 +23,3 @@ /** | ||
padDiv = $("<div/>").attr('class', 'padBookmark').attr('id', bookmarks[i].padId); | ||
padLinkTag = $("<a class='bookmarkPadId' href='javascript:pad.switchToPad(\""+bookmarks[i].padId+"\")'>"+bookmarks[i].padId+"</a>").attr('title', html10n.get("ep_bookmark.lastVisit")+': '+new Date(bookmarks[i].timestamp).toLocaleString()); | ||
padLinkTag = $("<a class='bookmarkPadId' href='javascript:window.location.href = \"./"+bookmarks[i].padId+"\"'>"+bookmarks[i].padId+"</a>").attr('title', html10n.get("ep_bookmark.lastVisit")+': '+new Date(bookmarks[i].timestamp).toLocaleString()); | ||
commentTag = $('<span class="comment"/>').text(bookmarks[i].description); | ||
@@ -26,0 +26,0 @@ commentEditTag = $('<input class="editComment" placeholder="🗒"/>'); |
21652
13