Rest of the embed side config

This commit is contained in:
Belen Curcio
2017-02-07 16:15:53 -03:00
parent 3fc7fbd01e
commit f8d83ffbde
5 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -2,8 +2,8 @@ import React from 'react';
import {render} from 'react-dom';
import {ApolloProvider} from 'react-apollo';
import {client} from 'coral-framework/client';
import store from 'coral-framework/store';
import {client} from 'coral-framework/services/client';
import store from 'coral-framework/services/store';
import Embed from './Embed';
+2 -2
View File
@@ -1,5 +1,5 @@
import store from './store';
import pym from './PymConnection';
import store from './services/store';
import pym from './services/PymConnection';
import I18n from './modules/i18n/i18n';
import * as authActions from './actions/auth';
import * as assetActions from './actions/asset';
@@ -1,4 +1,4 @@
import Pym from '../../node_modules/pym.js';
import Pym from '../../../node_modules/pym.js';
const pym = new Pym.Child({polling: 100});
export default pym;
+1 -1
View File
@@ -1,6 +1,6 @@
import {createStore, combineReducers, applyMiddleware, compose} from 'redux';
import thunk from 'redux-thunk';
import mainReducer from './reducers';
import mainReducer from '../reducers';
import {client} from './client';
const middlewares = [
@@ -7,7 +7,7 @@ import {myCommentHistory} from 'coral-framework/graphql/queries';
import {saveBio} from 'coral-framework/actions/user';
import BioContainer from './BioContainer';
import {link} from 'coral-framework/PymConnection';
import {link} from 'coral-framework/services/PymConnection';
import NotLoggedIn from '../components/NotLoggedIn';
import {TabBar, Tab, TabContent, Spinner} from 'coral-ui';
import SettingsHeader from '../components/SettingsHeader';