Refactor welcome wizard naming to more common wizard
[MAILPOET-1732]
This commit is contained in:
committed by
M. Shull
parent
6e0f6fd390
commit
4f64b29458
@ -16,4 +16,4 @@ import 'poll.jsx'; // side effect - assigns to MailPoet.Poll
|
||||
import 'settings/reinstall_from_scratch.js'; // side effect - adds event handler to document
|
||||
import 'subscribers/importExport/import.jsx'; // side effect - executes on doc ready, adds events
|
||||
import 'subscribers/importExport/export.js'; // side effect - executes on doc ready
|
||||
import 'welcome_wizard/wizard.jsx'; // side effect - renders ReactDOM to document
|
||||
import 'wizard/wizard.jsx'; // side effect - renders ReactDOM to document
|
||||
|
@ -1,9 +1,9 @@
|
||||
import React from 'react';
|
||||
import ReactDOM from 'react-dom';
|
||||
import { Route, HashRouter, Redirect } from 'react-router-dom';
|
||||
import WelcomeWizardStepsController from './steps_controller.jsx';
|
||||
import WelcomeWizardStepsController from './welcome_wizard_controller.jsx';
|
||||
|
||||
const container = document.getElementById('welcome_wizard_container');
|
||||
const container = document.getElementById('mailpoet_wizard_container');
|
||||
|
||||
if (container) {
|
||||
ReactDOM.render((
|
@ -15,7 +15,7 @@
|
||||
var admin_email = <%= json_encode(admin_email) %>;
|
||||
</script>
|
||||
|
||||
<div id="welcome_wizard_container"></div>
|
||||
<div id="mailpoet_wizard_container"></div>
|
||||
|
||||
<div class="welcome_wizard_video">
|
||||
<iframe width="1" height="1" src="https://player.vimeo.com/video/279123953" frameborder="0"></iframe>
|
||||
|
Reference in New Issue
Block a user