Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions powerdeletesuite.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var pd = {
version: "1.4.11",
version: "1.4.12",
bookmarkver: "1.4",
editStrings: [
"I love ice cream.",
Expand Down Expand Up @@ -307,6 +307,7 @@ var pd = {
comments: "/user/" + pd.config.user + "/comments/.json",
submissions: "/user/" + pd.config.user + "/submitted/.json",
search: "/search.json",
overview: "/user/" + pd.config.user + "/overview/.json",
};
},
applyDom: function () {
Expand Down Expand Up @@ -454,8 +455,9 @@ var pd = {
"comments",
"search",
"submissions",
"overview",
] /* Search is actually more efficient than submissions if we're not handling submissions (`self:1`) */
: ["comments", "submissions", "search"],
: ["comments", "submissions", "search","overview"],
sorts: ["new", "hot", "top", "controversial"],
timeframes: ["all", "hour", "day", "week", "month", "year"],
},
Expand Down