浏览代码

Fix case for button texts in the link dialog

Yevhen Pavliuk 8 年前
父节点
当前提交
20bfe9bc54
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      src/RichTextEditor.js

+ 1
- 1
src/RichTextEditor.js 查看文件

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() {