Browse Source

Related to commit 991459ece9

pull/116/head
Ramiro Saenz 9 years ago
parent
commit
00c32b949d
  1. 13
      app/view/main/MainController.js

13
app/view/main/MainController.js

@ -82,7 +82,7 @@ Ext.define('Rambox.view.main.MainController', {
,style: 'background-color:#93CFE0;color:#053767;' ,style: 'background-color:#93CFE0;color:#053767;'
,tpl: [ ,tpl: [
'<i class="fa fa-info-circle" aria-hidden="true" style="font-size:40px;margin:20px;"></i>' '<i class="fa fa-info-circle" aria-hidden="true" style="font-size:40px;margin:20px;"></i>'
,'<span style="font-size: 15px;position: absolute;top: 25px;padding-right: 10px;">{note}</span>' ,'<span style="font-size: 15px;position: absolute;padding: 10px 10px 10px 0;">{note}</span>'
] ]
} }
] ]
@ -245,6 +245,17 @@ Ext.define('Rambox.view.main.MainController', {
} }
] ]
} }
,{
xtype: 'container'
,hidden: record.get('note') === ''
,data: { note: record.get('note') }
,margin: '10 0 0 0'
,style: 'background-color:#93CFE0;color:#053767;'
,tpl: [
'<i class="fa fa-info-circle" aria-hidden="true" style="font-size:40px;margin:20px;"></i>'
,'<span style="font-size: 15px;position: absolute;padding: 10px 10px 10px 0;">{note}</span>'
]
}
] ]
} }
] ]

Loading…
Cancel
Save