以前使用ruby编译我们的Sass文件,我们已切换到节点版本。但是,这个会在注释中返回错误,如下所示:
$(document).on('focus', '.date', function(){
$(this).datepicker("destroy");
$(this).datepicker({
dateFormat: "dd.mm.yy",
minDate: new Date($("#minDate").text()),
maxDate: new Date($("#maxDate").text())
});
});
为什么会这样?我查看了文档,这是Sass允许评论的确切方式。有什么建议吗?
答案 0 :(得分:0)
尝试将您的评论更改为双斜线样式。以下内容为我编译:
div
position: fixed // Here's what sticks it
根据您的代码编辑器,您应该能够批量查找/替换并修复所有评论。