Dateiverwaltung für die WebBox
ulrich
2021-01-17 d9cdb1ac342ae2c867489ad4220bb2c81043f353
web/ui2/js/data.js
@@ -50,17 +50,17 @@
  this.fext = '';
  this.typeClass = function () {
    if (modus == 'kacheln') {
    if (app.modus == 'kacheln') {
      if (self.fr.isDirectory) {
        return 'fa-folder ordner';
        return 'icon-folder ordner';
      } else {
        return 'fa-file datei';
        return 'icon-doc-text-inv datei';
      }
    } else {
      if (self.fr.isDirectory) {
        return 'fa-folder ordner';
        return 'icon-folder ordner';
      } else {
        return 'fa-file-o datei';
        return 'icon-doc-text-inv datei';
      }
    }
  };
@@ -81,7 +81,7 @@
  };
  this.dia = function () {
    return fm_slideshow;
    return app.fm_slideshow;
  };
  this.miniurl = function () {
@@ -95,8 +95,8 @@
        self.fext = fny.substr(dotpos);
      }
    }
    var path = fm_get_path(app.userid);
    var imgurl = loc + path + '/' + self.fnx + '_tn' + self.fext;
    var path = app.fm_get_path(app.userid);
    var imgurl = app.loc + path + '/' + self.fnx + '_tn' + self.fext;
    return imgurl;
  };
@@ -113,7 +113,7 @@
      }
    }
    var path = fm_get_path(app.userid);
    var imgurl = loc + path + '/' + self.fnx + self.fext;
    var imgurl = app.loc + path + '/' + self.fnx + self.fext;
    return imgurl;
  };