Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: block.js

Issue 5088751004942336: Issue 370 - Right-clicked element is removed independent of created filter (Closed)
Patch Set: Created July 18, 2014, 9:13 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | include.postload.js » ('j') | include.postload.js » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: block.js
===================================================================
--- a/block.js
+++ b/block.js
@@ -24,7 +24,7 @@
window.addEventListener("dragend", onDragEnd, false);
$("#addButton").click(addFilters);
- $("#cancelButton").click(closeDialog.bind(null, false));
+ $("#cancelButton").click(closeDialog);
Wladimir Palant 2014/11/17 19:53:57 closeDialog() still has a filters parameter, with
// Apply jQuery UI styles
$("button").button();
@@ -69,10 +69,10 @@
.map(function(f) {return f.replace(/^\s+/, "").replace(/\s+$/, "");})
.filter(function(f) {return f != "";});
ext.backgroundPage.sendMessage({type: "add-filters", filters: filters});
- closeDialog(true);
+ closeDialog(filters);
}
-function closeDialog(success)
+function closeDialog(filters)
{
ext.backgroundPage.sendMessage(
{
@@ -80,7 +80,7 @@
payload:
{
type: "clickhide-close",
- remove: (typeof success == "boolean" ? success : false)
+ filters: filters
}
}
);
« no previous file with comments | « no previous file | include.postload.js » ('j') | include.postload.js » ('J')

Powered by Google App Engine
This is Rietveld