Advertisement
Guest User

Loaded but not executed

a guest
Jun 24th, 2016
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. System.register("common", [], function(exports_1, context_1) {
  2.     "use strict";
  3.     var __moduleName = context_1 && context_1.id;
  4.     function helloWorld() {
  5.         return "Hello World";
  6.     }
  7.     exports_1("helloWorld", helloWorld);
  8.     return {
  9.         setters:[],
  10.         execute: function() {
  11.         }
  12.     }
  13. });
  14. System.register("app", ["common"], function(exports_2, context_2) {
  15.     "use strict";
  16.     var __moduleName = context_2 && context_2.id;
  17.     var C;
  18.     return {
  19.         setters:[
  20.             function (C_1) {
  21.                 C = C_1;
  22.             }],
  23.         execute: function() {
  24.             alert(C.helloWorld());
  25.         }
  26.     }
  27. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement