Created
January 18, 2019 09:56
-
-
Save louwersj/3cf844507ef16b2dde4dee5983780646 to your computer and use it in GitHub Desktop.
This file contains 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
/** | |
* Copyright (c) 2018, Johan Louwers. Licensed under GNU GENERAL PUBLIC LICENSE | |
* code based upon the Oracle example viewModel file incidents.js for Oracle JET. | |
*/ | |
define(['ojs/ojcore', 'knockout', 'jquery'], | |
function(oj, ko, $) { | |
this.someVariable0 = ko.observable(); | |
function IncidentsViewModel() { | |
someVariable0= "<u>some text<u>" | |
} | |
return new IncidentsViewModel(); | |
} | |
); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment