added bleach to the lib

pull/775/head
lianahus 4 years ago committed by Liana Husikyan
parent b765ff3817
commit aa5d097e07
  1. 4
      apps/debugger/src/app/debugger-api.ts
  2. 2
      apps/remix-ide/src/app/tabs/debugger-tab.js

@ -6,10 +6,10 @@ import type { CompilationResult } from '@remix-project/remix-solidity-ts'
export const DebuggerApiMixin = (Base) => class extends Base {
initDebuggerApi () {
this.debugHash = null
const self = this
this.web3Provider = {
sendAsync(payload, callback) {
sendAsync (payload, callback) {
self.call('web3Provider', 'sendAsync', payload)
.then(result => callback(null, result))
.catch(e => callback(e))

@ -8,7 +8,7 @@ import ReactDOM from 'react-dom'
import modalDialogCustom from '../ui/modal-dialog-custom'
const yo = require('yo-yo')
const css = require('./styles/debugger-tab-styles')
const bleach = require('bleach');
import bleach from '../../lib/bleach'
const profile = {
name: 'debugger',

Loading…
Cancel
Save