Skip to content

Commit 5f19d03

Browse files
committed
version 0.0.1
1 parent fa24e8e commit 5f19d03

File tree

4 files changed

+25
-2
lines changed

4 files changed

+25
-2
lines changed

.cirrus.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
container:
2+
image: node:latest
3+
4+
test_task:
5+
node_modules_cache:
6+
folder: node_modules
7+
fingerprint_script: cat yarn.lock
8+
populate_script: yarn install
9+
script: yarn build

popup-page/components/home.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export class Home extends React.Component {
6969
}
7070
})
7171
.catch((e)=>{
72-
alert(e);
72+
console.log(e);
7373
this.setState({checkBox: false});
7474
});
7575
if(this.state.checkBox === true) {
@@ -108,7 +108,7 @@ export class Home extends React.Component {
108108
else
109109
this.setState({checkBox: false, checkBoxLabelValue: "Select this domain to hide from history."});
110110
}).catch((e)=>{
111-
alert(e);
111+
console.log(e);
112112
});
113113
//check if there any closed_tabs session is in the storage
114114
dBController.get("restore_tabs_url_list").then((dbres)=>{

popup-page/components/setting.jsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import React from 'react';
2+
3+
export default class setting extends React.Component{
4+
constructor(props) {
5+
super(props);
6+
}
7+
render() {
8+
return(
9+
<div>
10+
11+
</div>
12+
);
13+
}
14+
}

src/app/banner.jpg

71 KB
Loading

0 commit comments

Comments
 (0)