define([], () => { 'use strict'; var PageModule = function PageModule() {}; PageModule.prototype.showlogout = function() { $(".oj-navigationlist-element:nth-child(2)").css("display", "block"); }; PageModule.prototype.loginParam = function() { var myString = { "deviceName": "MyDevice", "username": document.getElementById("oj-input-text--715783437-1") .value, "password": document.getElementById("oj-input-text--715783437-2") .value } return myString; }; return PageModule; });