Guest User

Untitled

a guest
Jan 17th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. /**
  2. * Copyright (c) 2018, Johan Louwers. Licensed under GNU GENERAL PUBLIC LICENSE
  3. * code based upon the Oracle example viewModel file incidents.js for Oracle JET.
  4. */
  5.  
  6. define(['ojs/ojcore', 'knockout', 'jquery'],
  7. function(oj, ko, $) {
  8.  
  9. this.someVariable0 = ko.observable();
  10.  
  11. function IncidentsViewModel() {
  12. someVariable0 = "zero"
  13.  
  14. }
  15. return new IncidentsViewModel();
  16. }
  17. );
Add Comment
Please, Sign In to add comment