Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b37388d

Browse files
committedMar 23, 2015
interaction between engine and ui
1 parent 014649d commit b37388d

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed
 

‎public/polymer_components/rocon-button.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<link rel="import" href="../components/polymer/polymer.html">
44
<!-- <link rel="import" href="../components/paper-button/paper-button.html"> -->
5-
<polymer-element name="rocon-button" role="button" attributes="rocon_id">
5+
<polymer-element name="rocon-button" role="button" attributes="rocon_id text">
66
<template>
77
<style>
88
:host {
@@ -27,7 +27,7 @@
2727
</style>
2828
<!-- <div class="tile" flex center-justified center self-stretch on-tap="{{handleTap}}"> -->
2929
<div id="wrapper" on-tap="{{handleTap}}">
30-
<content align-center></content> ({{rocon_id}})
30+
<div align-center>{{text}}</div>
3131
</div>
3232
<!-- <div class="tile" center on-tap="{{handleTap}}"> -->
3333
<!-- <content></content> -->

‎public/polymer_components/rocon-text.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<link rel="import" href="../components/polymer/polymer.html">
2-
<polymer-element name="rocon-text" attributes="value" >
2+
<polymer-element name="rocon-text" attributes="text" >
33
<template>
44
<style>
55
:host {
@@ -25,7 +25,7 @@
2525
</style>
2626
<!-- <div class="tile" flex center-justified center self-stretch on-tap="{{handleTap}}"> -->
2727
<div id="wrapper">
28-
<content align-center></content>
28+
<div align-center>{{text}}</div>
2929
</div>
3030
</template>
3131

‎src/routes.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ module.exports = function(app, db){
6969
return '<div flex layout '+meta.type+'>'+childrenEl+'</div>';
7070

7171
}else if(meta.type == 'button'){
72-
return '<rocon-button flex rocon_id="'+meta.name+'">'+meta.text+'</rocon-button>';
72+
return '<rocon-button flex rocon_id="'+meta.name+'" text="'+meta.text+'"></rocon-button>';
7373
}else if(meta.type == 'text'){
74-
return '<rocon-text flex rocon_id="'+meta.name+'">'+meta.text+'</rocon-button>';
74+
return '<rocon-text flex rocon_id="'+meta.name+'" text="'+meta.text+'"></rocon-button>';
7575
}
7676

7777

‎views/ui.ejs

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
9595
superagent
9696
.post('/api/ros/publish')
97-
.send({topic: 'from-rocon-ui', type: 'std_msgs/String', message: {data: JSON.stringify(detail)}})
97+
.send({topic: '/from-rocon-ui', type: 'std_msgs/String', message: {data: JSON.stringify(detail)}})
9898
.end(function(e, res){
9999
console.log(res.text);
100100

0 commit comments

Comments
 (0)
Please sign in to comment.