Hacker News new | ask | show | jobs
by MrBra 4739 days ago
is this just some js and jquery or there is more behind it? browser db? angular js? I am not familiar with those technologies so I can't be sure I can recognize them, so please just answer...
1 comments

Have you looked at the source?

  <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
  <script src="lib/jquery.color-2.1.2.min.js"></script>
  <script src="script/Button.js"></script>
  <script src="script/engine.js"></script>
  <script src="script/header.js"></script>
  <script src="script/notifications.js"></script>
  <script src="script/events.js"></script>
  <script src="script/room.js"></script>
  <script src="script/outside.js"></script>
  <script src="script/world.js"></script>
  <script src="script/path.js"></script>
  <script src="script/ship.js"></script>
  <script src="script/space.js"></script>
  <!-- Event modules -->
  <script src="script/events/global.js"></script>
  <script src="script/events/room.js"></script>
  <script src="script/events/outside.js"></script>
  <script src="script/events/encounters.js"></script>
  <script src="script/events/setpieces.js"></script>
With the exception of the two minimized libraries, none of this code is obfuscated in the least. It even has comments in it!
Yes, just looking at the html page source is what I did, but then at first sight I couldn't tell if those other .js where part of a known modular js framework or not, since as I said I am not familiar with those.
*were :P