Browse Source

Fix case for button texts in the link dialog

Yevhen Pavliuk 8 years ago
parent
commit
20bfe9bc54
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/RichTextEditor.js

+ 1
- 1
src/RichTextEditor.js View File

243
   }
243
   }
244
 
244
 
245
   _upperCaseButtonTextIfNeeded(buttonText) {
245
   _upperCaseButtonTextIfNeeded(buttonText) {
246
-    return PlatfomIOS ? buttonText : buttonText.toLowerCase();
246
+    return PlatfomIOS ? buttonText : buttonText.toUpperCase();
247
   }
247
   }
248
 
248
 
249
   render() {
249
   render() {