You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by am...@apache.org on 2018/07/09 19:17:51 UTC

[couchdb-fauxton] branch master updated: Add search support to code editor (#1102)

This is an automated email from the ASF dual-hosted git repository.

amaranhao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb-fauxton.git


The following commit(s) were added to refs/heads/master by this push:
     new 8af000d  Add search support to code editor (#1102)
8af000d is described below

commit 8af000da37e805d3389577dbc8266259c4e32256
Author: Antonio Maranhao <30...@users.noreply.github.com>
AuthorDate: Mon Jul 9 15:17:48 2018 -0400

    Add search support to code editor (#1102)
---
 app/addons/components/components/codeeditor.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app/addons/components/components/codeeditor.js b/app/addons/components/components/codeeditor.js
index 4037f99..2671e1f 100644
--- a/app/addons/components/components/codeeditor.js
+++ b/app/addons/components/components/codeeditor.js
@@ -13,6 +13,7 @@ import React from "react";
 import ReactDOM from "react-dom";
 import FauxtonAPI from "../../../core/api";
 import ace from "brace";
+import "brace/ext/searchbox";
 import {StringEditModal} from './stringeditmodal';
 
 require('brace/mode/javascript');