syntax fixes
This commit is contained in:
parent
30fc943833
commit
73e7c38873
5 changed files with 19 additions and 18 deletions
|
@ -1,6 +1,6 @@
|
||||||
/* global Metamaps, $ */
|
/* global Metamaps, $ */
|
||||||
|
|
||||||
import Active from './Active'
|
import Active from '../Active'
|
||||||
import GlobalUI from '../GlobalUI'
|
import GlobalUI from '../GlobalUI'
|
||||||
import Router from '../Router'
|
import Router from '../Router'
|
||||||
|
|
||||||
|
|
|
@ -1,17 +1,17 @@
|
||||||
/* global Metamaps, $ */
|
/* global Metamaps, $ */
|
||||||
|
|
||||||
import Active from './Active'
|
import Active from '../Active'
|
||||||
import AutoLayout from './AutoLayout'
|
import AutoLayout from '../AutoLayout'
|
||||||
import Create from './Create'
|
import Create from '../Create'
|
||||||
import Filter from './Filter'
|
import Filter from '../Filter'
|
||||||
import GlobalUI from './GlobalUI'
|
import GlobalUI from '../GlobalUI'
|
||||||
import JIT from './JIT'
|
import JIT from '../JIT'
|
||||||
import Realtime from './Realtime'
|
import Realtime from '../Realtime'
|
||||||
import Router from './Router'
|
import Router from '../Router'
|
||||||
import Selected from './Selected'
|
import Selected from '../Selected'
|
||||||
import SynapseCard from './SynapseCard'
|
import SynapseCard from '../SynapseCard'
|
||||||
import TopicCard from './TopicCard'
|
import TopicCard from '../TopicCard'
|
||||||
import Visualize from './Visualize'
|
import Visualize from '../Visualize'
|
||||||
|
|
||||||
import CheatSheet from './CheatSheet'
|
import CheatSheet from './CheatSheet'
|
||||||
import InfoBox from './InfoBox'
|
import InfoBox from './InfoBox'
|
||||||
|
@ -361,5 +361,5 @@ const Map = {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export CheatSheet, InfoBox
|
export { CheatSheet, InfoBox }
|
||||||
export default Map
|
export default Map
|
||||||
|
|
|
@ -95,7 +95,7 @@ var Private = {
|
||||||
},
|
},
|
||||||
initializeSounds: function() {
|
initializeSounds: function() {
|
||||||
this.sound = new Howl({
|
this.sound = new Howl({
|
||||||
urls: [Metamaps.Erb['sounds/MM_sounds.mp3'], Metamaps.Erb['sounds/MM_sounds.ogg'],
|
urls: [Metamaps.Erb['sounds/MM_sounds.mp3'], Metamaps.Erb['sounds/MM_sounds.ogg']],
|
||||||
sprite: {
|
sprite: {
|
||||||
joinmap: [0, 561],
|
joinmap: [0, 561],
|
||||||
leavemap: [1000, 592],
|
leavemap: [1000, 592],
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/* global Metamaps, $ */
|
/* global Metamaps, $ */
|
||||||
|
|
||||||
import Active from './Active'
|
|
||||||
import ReactComponents from './ReactComponents'
|
|
||||||
import ReactDOM from 'react-dom' // TODO ensure this isn't a double import
|
import ReactDOM from 'react-dom' // TODO ensure this isn't a double import
|
||||||
|
|
||||||
|
import Active from '../Active'
|
||||||
|
import ReactComponents from '../ReactComponents'
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* - Metamaps.Loading
|
* - Metamaps.Loading
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -3,4 +3,4 @@ import ChatView from './ChatView'
|
||||||
import VideoView from './VideoView'
|
import VideoView from './VideoView'
|
||||||
import Room from './Room'
|
import Room from './Room'
|
||||||
|
|
||||||
export ExploreMaps, ChatView, VideoView, Room
|
export { ExploreMaps, ChatView, VideoView, Room }
|
||||||
|
|
Loading…
Reference in a new issue