This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // -- Module creation | |
| var Main; | |
| (function (Main) { | |
| var Person = (function () { | |
| function Person(name) { | |
| this.name = name; | |
| } | |
| Person.prototype.sayHello = function () { | |
| return "Hello, " + this.name; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package helpers | |
| import play.api.Play | |
| import play.Logger | |
| import java.lang.reflect.Method | |
| /** | |
| * The Dynamic object is responsible for calling on static pages via a keyword | |
| * This makes updating and adding pages easier without having to add routes for the pages | |
| */ |
NewerOlder