@@ -42,13 +42,13 @@ RactiveAgentMonitor = Ractive.extend({
4242 viewController = @ get (' viewController' )
4343 { worldWidth , worldHeight } = viewController .getWorldShape ()
4444 windowGenerator = followAgentWithZoom (
45- @ find (' .inspection__agent-monitor__view -container' ).offsetWidth ,
45+ @ find (' .inspection-agent-monitor-view -container' ).offsetWidth ,
4646 @ get (' viewModelAgent' ),
4747 @ get (' zoomLevel' ),
4848 Math .min (worldWidth, worldHeight) / 2
4949 )
5050 viewWindow = viewController .getNewView (
51- @ find (' .inspection__agent-monitor__view -container' ),
51+ @ find (' .inspection-agent-monitor-view -container' ),
5252 ' world' ,
5353 windowGenerator
5454 )
@@ -172,7 +172,7 @@ RactiveAgentMonitor = Ractive.extend({
172172 template :
173173 """
174174 <div
175- class="inspection__agent -monitor"
175+ class="inspection-agent -monitor"
176176 on-mouseenter="['hover-agent-card', agent]"
177177 on-mouseleave="['unhover-agent-card', agent]"
178178 >
@@ -185,10 +185,10 @@ RactiveAgentMonitor = Ractive.extend({
185185
186186 partials : {
187187 " titleBar" : """
188- <div class="inspection__agent-monitor__title -bar">
188+ <div class="inspection-agent-monitor-title -bar">
189189 <span class="title">{{agent.getName()}}</span>
190190 <div
191- class="inspection__button "
191+ class="inspection-button "
192192 on-click=["closed-agent-monitor", agent]
193193 >
194194 <img width=15 src="assets/images/inspect/close.png"/>
@@ -198,28 +198,28 @@ RactiveAgentMonitor = Ractive.extend({
198198
199199 " viewSection" : """
200200 <div
201- class="inspection__agent-monitor__view -container"
201+ class="inspection-agent-monitor-view -container"
202202 on-contextmenu="show-context-menu"
203203 ></div>
204- <div class="inspection__agent-monitor__view -controls">
204+ <div class="inspection-agent-monitor-view -controls">
205205 <div
206- class="inspection__button inspection__agent-monitor__watch -button"
206+ class="inspection-button inspection-agent-monitor-watch -button"
207207 on-click="watch-button-clicked"
208208 >Watch</div>
209209 <input type="range" min=0 max=1 step=0.01 value="{{zoomLevel}}"/>
210210 </div>
211211 """
212212
213213 " propertyGrid" : """
214- <div class="inspection__agent-monitor__property -grid">
214+ <div class="inspection-agent-monitor-property -grid">
215215 {{#each varNames as varName}}
216216 <agentVarField agent={{agent}} varName={{varName}}/>
217217 {{/each}}
218218 </div>
219219 """
220220
221221 " commandCenter" : """
222- <div class="inspection__cmd -container" style="margin: 0;">
222+ <div class="inspection-cmd -container" style="margin: 0;">
223223 <commandInput
224224 isReadOnly={{isEditing}}
225225 source="agent-monitor"
0 commit comments