Browse Source

Merge pull request #5769 from dumyan/findcontroller-nbsp

nbsp normalization
Tim van der Meij 10 years ago
parent
commit
a033b4bf3d
  1. 3
      web/pdf_find_controller.js

3
web/pdf_find_controller.js

@ -65,7 +65,8 @@ var PDFFindController = (function PDFFindControllerClosure() { @@ -65,7 +65,8 @@ var PDFFindController = (function PDFFindControllerClosure() {
'\u201F': '"', // Double high-reversed-9 quotation mark
'\u00BC': '1/4', // Vulgar fraction one quarter
'\u00BD': '1/2', // Vulgar fraction one half
'\u00BE': '3/4' // Vulgar fraction three quarters
'\u00BE': '3/4', // Vulgar fraction three quarters
'\u00A0': ' ' // No-break space
};
this.findBar = options.findBar || null;

Loading…
Cancel
Save