Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Feedback from @bsclifton
Browse files Browse the repository at this point in the history
  • Loading branch information
darkdh committed Sep 17, 2016
1 parent 1b3df70 commit ec45bdf
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 21 deletions.
12 changes: 0 additions & 12 deletions app/browser/menu.js
Expand Up @@ -61,18 +61,6 @@ const createFileSubmenu = () => {
}
},
CommonMenu.separatorMenuItem,
/*
{
label: locale.translation('importFrom'),
visible: false
submenu: [
{label: 'Google Chrome...'},
{label: 'Firefox...'},
{label: 'Safari...'}
]
},
CommonMenu.separatorMenuItem,
*/
{
// this should be disabled when
// no windows are active
Expand Down
Expand Up @@ -3,12 +3,12 @@
* You can obtain one at http://mozilla.org/MPL/2.0/. */

const React = require('react')
const ImmutableComponent = require('./immutableComponent')
const Dialog = require('./dialog')
const Button = require('./button')
const SwitchControl = require('./switchControl')
const windowActions = require('../actions/windowActions')
const appActions = require('../actions/appActions')
const ImmutableComponent = require('../../../js/components/immutableComponent')
const Dialog = require('../../../js/components/dialog')
const Button = require('../../../js/components/button')
const SwitchControl = require('../../../js/components/switchControl')
const windowActions = require('../../../js/actions/windowActions')
const appActions = require('../../../js/actions/appActions')

class ImportBrowserDataPanel extends ImmutableComponent {
constructor () {
Expand Down
2 changes: 1 addition & 1 deletion docs/appActions.md
Expand Up @@ -355,7 +355,7 @@ Import browser data specified in selected

**Parameters**

**selected**: `object`, the browser data to import as per doc/state.md's importBroserDataSelected
**selected**: `object`, the browser data to import as per doc/state.md's importBrowserDataSelected



Expand Down
2 changes: 1 addition & 1 deletion docs/state.md
Expand Up @@ -516,7 +516,7 @@ WindowStore
cookies: boolean
}
],
importBroserDataSelected: {
importBrowserDataSelected: {
index: string,
type: number,
history: boolean,
Expand Down
2 changes: 1 addition & 1 deletion js/components/main.js
Expand Up @@ -29,7 +29,7 @@ const BrowserActionButton = require('../../app/renderer/components/browserAction
const SiteInfo = require('./siteInfo')
const BraveryPanel = require('./braveryPanel')
const ClearBrowsingDataPanel = require('./clearBrowsingDataPanel')
const ImportBrowserDataPanel = require('./importBrowserDataPanel')
const ImportBrowserDataPanel = require('../../app/renderer/components/importBrowserDataPanel')
const AutofillAddressPanel = require('./autofillAddressPanel')
const AutofillCreditCardPanel = require('./autofillCreditCardPanel')
const AddEditBookmark = require('./addEditBookmark')
Expand Down

1 comment on commit ec45bdf

@bsclifton
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

++ thanks 😄

Please sign in to comment.