Home | History | Annotate | Download | only in js

Lines Matching full:visited

3123  * Track visited urls in localStorage.
3131 * Generate resource cards for visited pages.
3138 // Only show history component if enough pages have been visited.
3156 var visited = localStorage.getItem('visited-pages');
3157 return visitedvisited) : [];
3169 // Backwards lookup for current page, last pages most likely to be visited again.
3181 // If storage limit is exceeded, remove last visited path.
3190 * Add current page to back of visited array, increase hit count by 1.
3204 // Most recently visted pages are located at the end of the visited array.
3207 localStorage.setItem('visited-pages', JSON.stringify(pages));
3227 * Return a list of visited urls in a given order.
3228 * @param {String} order - (recent|most-visited)