添加标记功能时,riot jsfiddle会中断

时间:2015-06-26 23:00:49

标签: jsfiddle riot.js

这个小提琴坏了。删除oops功能以修复它。当我需要oops功能时该怎么办? https://jsfiddle.net/mvvapzub/1/

oops(e) {

}

这是一个具有防暴功能的小提琴(isFolder)并没有被打破。 https://jsfiddle.net/walkermatt/1vdo5pmf/1/

1 个答案:

答案 0 :(得分:0)

通过缩进脚本标记内的所有内容来修复

https://jsfiddle.net/mvvapzub/3/

/// this does NOT work
<script type="riot/tag">
<app>
    <table>
        ...
    </table>

    ...

    oops(e) {
        return true
    }

</app>
</script>

/// this works
<script type="riot/tag">
    <app>
        <table>
            ...
        </table>

        ...

        oops(e) {
            return true
        }

    </app>
</script>