coffeescript - Dashing仪表板未显示正确的图标

时间:2014-02-28 17:10:00

标签: widget dashing

我创建了一个Dashing小部件,我在仪表板上显示正确的图标时出错。该过程检查来自文本文件的值,如果它超过28,则应显示警告图标,但它结束时显示一个检查图标。我正在使用下面的if子句

  @accessor 'arrow', ->
  if @get(parseInt('tatint')) > 28 then 'icon-warning-sign' else 'icon-check'

翻译 -

this.accessor('arrow', function() {
  if (this.get(parseInt('tatint')) > 28) {
    return 'icon-warning-sign';
  } else {
    return 'icon-check';
  }
})

提前致谢

0 个答案:

没有答案