Skip to content

Commit

Permalink
Revert a couple of messages
Browse files Browse the repository at this point in the history
  • Loading branch information
j-f1 committed May 14, 2017
1 parent 8832aff commit c57bb5a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions fdsc/fdsc.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
* have to see how much of a problem that is.
*/
fdsc.getWriteToken = function (afterFlag, callback) {
debug("get write token");
debug("entering getWriteToken");
window.open("https://metasmoke.erwaysoftware.com/oauth/request?key=" + fdsc.metasmokeKey, "_blank");

function getInput() {
Expand Down Expand Up @@ -166,7 +166,8 @@
* can be obtained using `fdsc.getWriteToken()`.
*/
fdsc.sendFeedback = function (feedbackType, postId) {
debug("send feedback with write token", fdsc.msWriteToken);
debug("entering sendFeedback");
debug("write token:", fdsc.msWriteToken);
var token;
if (typeof (fdsc.msWriteToken) === "object") {
token = fdsc.msWriteToken.value;
Expand Down Expand Up @@ -228,7 +229,8 @@
if (StackExchange.options.user.isModerator) {
return;
}
debug("report post with write token", fdsc.msWriteToken);
debug("entering reportPost");
debug("write token:", fdsc.msWriteToken);
var token;
if (typeof (fdsc.msWriteToken) === "object") {
token = fdsc.msWriteToken.value;
Expand Down

0 comments on commit c57bb5a

Please sign in to comment.