次のコードをコーディングするためにhamlを使用しています。私は基本的に、index.html.haml ファイルに多数のネストされた if-else ステートメントを持っています。ただし、以下のコードの構文エラーが発生し続けます。
- if current_user
:javascript
window.is_logined_in = true;
window.currentUserJSON = #{@current_user_json};
//Getting syntax error for the line below
- if window.currentUserJSON.user.following_count == 293 && window.currentUserJSON.user.answer_count == 276
window.complete_orientation = true;
- else
window.complete_orientation = false;
- else
:javascript
window.is_logined_in = false;
この構文エラーを解決するためにコードを変更するにはどうすればよいですか?