Skip to content

Commit

Permalink
Update Find and Replace All Open and Letters.js
Browse files Browse the repository at this point in the history
Added cent symbol.
  • Loading branch information
kistasaurus committed Jun 24, 2015
1 parent 53541f2 commit 9b4aa51
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Find and Replace All Open and Letters.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This does the finding and replacing. This will find and replace for all open documents.
// JavaScript Document
function canAcceptCommand() {
return true;
}
Expand Down Expand Up @@ -150,6 +150,15 @@ function doIt() {
searchSource: true,
useRegularExpressions: false
});
dreamweaver.replaceAll();

dreamweaver.setUpFindReplace({
searchString: "¢",
replaceString: "¢",
searchWhat: "allOpenDocuments",
searchSource: true,
useRegularExpressions: false
});
dreamweaver.replaceAll();

dreamweaver.setUpFindReplace({
Expand Down

0 comments on commit 9b4aa51

Please sign in to comment.