vdanyliv / ngx-tiny-slider

Angular wrapper for tiny-slider
https://npmjs.com/package/ngx-tiny-slider
MIT License
15 stars 18 forks source link

Angular Universal: Server-side generate error #35

Open GeorgeHulpoi opened 3 years ago

GeorgeHulpoi commented 3 years ago

As you know, on Angular Universal the document or window doesn't exist. Importing the module will generate errors because of this.

var doc = document,
      win = window,
      KEYS = {
        ENTER: 13,
        SPACE: 32,
        LEFT: 37,
        RIGHT: 39
      },
      tnsStorage = {},
      localStorageAccess = options.useLocalStorage;

Basically ngx-tiny-slider.service.ts should import tiny-slider when the platform is the browser.