Guest User

Untitled

a guest
May 22nd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public render(): void {
  2. if (this.renderedOnce) {
  3. return;
  4. }
  5.  
  6. if(!window["jQuery"]){
  7. require("jquery");
  8. }
  9.  
  10. if(!window["kendo"]){
  11. require("@progress/kendo-ui");
  12. }
  13.  
  14. ...
  15.  
  16. ....
  17.  
  18. if(!window["kendo"]){
  19. require("@progress/kendo-ui");
  20. window["$"] = window["jQuery"] = window["kendo"]["jQuery"];
  21. }
  22.  
  23. ....
Add Comment
Please, Sign In to add comment