It is happening when I'm learning Web Development with Clojure, Third Edition. At first everything looks fine and nothing to worry about, but when i start turn on my pc again, move into next section, and change the code, the HTML layout doesn't change. It's still "Hello, Auto!" even i restore the code again.
I even do with the backup project, but the output still same.
Here's the code :
(ns guestbook.core)
(-> (.getElementById js/document "content")
(.-innerHTML)
(set! "Hello, Auto!"))
and this is the home HTML resources :
{% extends "base.html" %}
{% block content %}
<input id="token" type="hidden" value="{{csrf-token}}" />
<div id="content"></div>
{% endblock %}
{% block page-scripts %}
{% script "/js/app.js" %}
{% endblock %}