File tree 4 files changed +7
-7
lines changed
public/polymer_components
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 2
2
3
3
< link rel ="import " href ="../components/polymer/polymer.html ">
4
4
<!-- <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 ">
6
6
< template >
7
7
< style >
8
8
: host {
27
27
</ style >
28
28
<!-- <div class="tile" flex center-justified center self-stretch on-tap="{{handleTap}}"> -->
29
29
< div id ="wrapper " on-tap ="{{handleTap}} ">
30
- < content align-center > </ content > ({{rocon_id}})
30
+ < div align-center > {{text}} </ div >
31
31
</ div >
32
32
<!-- <div class="tile" center on-tap="{{handleTap}}"> -->
33
33
<!-- <content></content> -->
Original file line number Diff line number Diff line change 1
1
< link rel ="import " href ="../components/polymer/polymer.html ">
2
- < polymer-element name ="rocon-text " attributes ="value " >
2
+ < polymer-element name ="rocon-text " attributes ="text " >
3
3
< template >
4
4
< style >
5
5
: host {
25
25
</ style >
26
26
<!-- <div class="tile" flex center-justified center self-stretch on-tap="{{handleTap}}"> -->
27
27
< div id ="wrapper ">
28
- < content align-center > </ content >
28
+ < div align-center > {{text}} </ div >
29
29
</ div >
30
30
</ template >
31
31
Original file line number Diff line number Diff line change @@ -69,9 +69,9 @@ module.exports = function(app, db){
69
69
return '<div flex layout ' + meta . type + '>' + childrenEl + '</div>' ;
70
70
71
71
} 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>' ;
73
73
} 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>' ;
75
75
}
76
76
77
77
Original file line number Diff line number Diff line change 94
94
95
95
superagent
96
96
.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)}})
98
98
.end (function (e , res ){
99
99
console .log (res .text );
100
100
You can’t perform that action at this time.
0 commit comments