From c043164de5a7596f97b1e5ba677b84bb478c1fa9 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 22 Aug 2016 14:28:24 -0400 Subject: [PATCH] start a dashboard folder --- .../emby-button/paper-icon-button-light.js | 2 +- .../bower_components/iron-meta/.bower.json | 6 +- dashboard-ui/camerauploadsettings.html | 24 +++++ dashboard-ui/cinemamodeconfiguration.html | 2 +- dashboard-ui/css/site.css | 16 ---- .../{scripts => dashboard}/aboutpage.js | 0 .../{scripts => dashboard}/autoorganizelog.js | 0 .../autoorganizesmart.js | 0 .../{scripts => dashboard}/autoorganizetv.js | 0 .../cinemamodeconfiguration.js | 0 .../dashboardgeneral.js | 0 .../dashboardhosting.js | 0 .../{scripts => dashboard}/devicesupload.js | 0 .../{scripts => dashboard}/librarydisplay.js | 0 .../{scripts => dashboard}/librarysettings.js | 0 .../livetvtunerprovider-satip.js | 0 .../{scripts => dashboard}/logpage.js | 0 .../wizardcomponents.js | 0 .../wizardfinishpage.js | 0 dashboard-ui/devices/ios/ios.css | 2 +- dashboard-ui/devicesupload.html | 2 +- dashboard-ui/mysyncsettings.html | 13 +-- dashboard-ui/scripts/camerauploadsettings.js | 95 +++++++++++++++++++ dashboard-ui/scripts/mysyncsettings.js | 22 ----- dashboard-ui/scripts/site.js | 86 +++++++++-------- dashboard-ui/serviceworker.js | 7 +- 26 files changed, 182 insertions(+), 95 deletions(-) create mode 100644 dashboard-ui/camerauploadsettings.html rename dashboard-ui/{scripts => dashboard}/aboutpage.js (100%) rename dashboard-ui/{scripts => dashboard}/autoorganizelog.js (100%) rename dashboard-ui/{scripts => dashboard}/autoorganizesmart.js (100%) rename dashboard-ui/{scripts => dashboard}/autoorganizetv.js (100%) rename dashboard-ui/{scripts => dashboard}/cinemamodeconfiguration.js (100%) rename dashboard-ui/{scripts => dashboard}/dashboardgeneral.js (100%) rename dashboard-ui/{scripts => dashboard}/dashboardhosting.js (100%) rename dashboard-ui/{scripts => dashboard}/devicesupload.js (100%) rename dashboard-ui/{scripts => dashboard}/librarydisplay.js (100%) rename dashboard-ui/{scripts => dashboard}/librarysettings.js (100%) rename dashboard-ui/{scripts => dashboard}/livetvtunerprovider-satip.js (100%) rename dashboard-ui/{scripts => dashboard}/logpage.js (100%) rename dashboard-ui/{scripts => dashboard}/wizardcomponents.js (100%) rename dashboard-ui/{scripts => dashboard}/wizardfinishpage.js (100%) create mode 100644 dashboard-ui/scripts/camerauploadsettings.js diff --git a/dashboard-ui/bower_components/emby-webcomponents/emby-button/paper-icon-button-light.js b/dashboard-ui/bower_components/emby-webcomponents/emby-button/paper-icon-button-light.js index 39250a7a74..b414c68a26 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/emby-button/paper-icon-button-light.js +++ b/dashboard-ui/bower_components/emby-webcomponents/emby-button/paper-icon-button-light.js @@ -48,7 +48,7 @@ } } - EmbyButtonPrototype.attachedCallback = function () { + EmbyButtonPrototype.createdCallback = function () { if (this.classList.contains('paper-icon-button-light')) { return; diff --git a/dashboard-ui/bower_components/iron-meta/.bower.json b/dashboard-ui/bower_components/iron-meta/.bower.json index e1304d174b..f4bfef4a7c 100644 --- a/dashboard-ui/bower_components/iron-meta/.bower.json +++ b/dashboard-ui/bower_components/iron-meta/.bower.json @@ -26,14 +26,14 @@ "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" }, "main": "iron-meta.html", - "homepage": "https://github.com/PolymerElements/iron-meta", + "homepage": "https://github.com/polymerelements/iron-meta", "_release": "1.1.1", "_resolution": { "type": "version", "tag": "v1.1.1", "commit": "e171ee234b482219c9514e6f9551df48ef48bd9f" }, - "_source": "git://github.com/PolymerElements/iron-meta.git", + "_source": "git://github.com/polymerelements/iron-meta.git", "_target": "^1.0.0", - "_originalSource": "PolymerElements/iron-meta" + "_originalSource": "polymerelements/iron-meta" } \ No newline at end of file diff --git a/dashboard-ui/camerauploadsettings.html b/dashboard-ui/camerauploadsettings.html new file mode 100644 index 0000000000..3cade19b9b --- /dev/null +++ b/dashboard-ui/camerauploadsettings.html @@ -0,0 +1,24 @@ +
+ +
+
+ +

+ ${HeaderCameraUpload} +

+ +

${SelectCameraUploadServers}

+ +
+
+
+ +
+
+ +
+
+
\ No newline at end of file diff --git a/dashboard-ui/cinemamodeconfiguration.html b/dashboard-ui/cinemamodeconfiguration.html index 1238c2c3e2..13bf29fca8 100644 --- a/dashboard-ui/cinemamodeconfiguration.html +++ b/dashboard-ui/cinemamodeconfiguration.html @@ -1,4 +1,4 @@ -
+
diff --git a/dashboard-ui/css/site.css b/dashboard-ui/css/site.css index 0d09ff7345..0a3b6756b5 100644 --- a/dashboard-ui/css/site.css +++ b/dashboard-ui/css/site.css @@ -533,22 +533,6 @@ progress { } } -.nativeApp *:not(input):not(select):not(textarea) { - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - -webkit-touch-callout: none; - -moz-touch-callout: none; - -ms-touch-callout: none; - touch-callout: none; - -webkit-user-drag: none; - -moz-user-drag: none; - -ms-user-drag: none; - user-drag: none; -} - .syncActivityForTarget { margin: 0 0 3em 0; } diff --git a/dashboard-ui/scripts/aboutpage.js b/dashboard-ui/dashboard/aboutpage.js similarity index 100% rename from dashboard-ui/scripts/aboutpage.js rename to dashboard-ui/dashboard/aboutpage.js diff --git a/dashboard-ui/scripts/autoorganizelog.js b/dashboard-ui/dashboard/autoorganizelog.js similarity index 100% rename from dashboard-ui/scripts/autoorganizelog.js rename to dashboard-ui/dashboard/autoorganizelog.js diff --git a/dashboard-ui/scripts/autoorganizesmart.js b/dashboard-ui/dashboard/autoorganizesmart.js similarity index 100% rename from dashboard-ui/scripts/autoorganizesmart.js rename to dashboard-ui/dashboard/autoorganizesmart.js diff --git a/dashboard-ui/scripts/autoorganizetv.js b/dashboard-ui/dashboard/autoorganizetv.js similarity index 100% rename from dashboard-ui/scripts/autoorganizetv.js rename to dashboard-ui/dashboard/autoorganizetv.js diff --git a/dashboard-ui/scripts/cinemamodeconfiguration.js b/dashboard-ui/dashboard/cinemamodeconfiguration.js similarity index 100% rename from dashboard-ui/scripts/cinemamodeconfiguration.js rename to dashboard-ui/dashboard/cinemamodeconfiguration.js diff --git a/dashboard-ui/scripts/dashboardgeneral.js b/dashboard-ui/dashboard/dashboardgeneral.js similarity index 100% rename from dashboard-ui/scripts/dashboardgeneral.js rename to dashboard-ui/dashboard/dashboardgeneral.js diff --git a/dashboard-ui/scripts/dashboardhosting.js b/dashboard-ui/dashboard/dashboardhosting.js similarity index 100% rename from dashboard-ui/scripts/dashboardhosting.js rename to dashboard-ui/dashboard/dashboardhosting.js diff --git a/dashboard-ui/scripts/devicesupload.js b/dashboard-ui/dashboard/devicesupload.js similarity index 100% rename from dashboard-ui/scripts/devicesupload.js rename to dashboard-ui/dashboard/devicesupload.js diff --git a/dashboard-ui/scripts/librarydisplay.js b/dashboard-ui/dashboard/librarydisplay.js similarity index 100% rename from dashboard-ui/scripts/librarydisplay.js rename to dashboard-ui/dashboard/librarydisplay.js diff --git a/dashboard-ui/scripts/librarysettings.js b/dashboard-ui/dashboard/librarysettings.js similarity index 100% rename from dashboard-ui/scripts/librarysettings.js rename to dashboard-ui/dashboard/librarysettings.js diff --git a/dashboard-ui/scripts/livetvtunerprovider-satip.js b/dashboard-ui/dashboard/livetvtunerprovider-satip.js similarity index 100% rename from dashboard-ui/scripts/livetvtunerprovider-satip.js rename to dashboard-ui/dashboard/livetvtunerprovider-satip.js diff --git a/dashboard-ui/scripts/logpage.js b/dashboard-ui/dashboard/logpage.js similarity index 100% rename from dashboard-ui/scripts/logpage.js rename to dashboard-ui/dashboard/logpage.js diff --git a/dashboard-ui/scripts/wizardcomponents.js b/dashboard-ui/dashboard/wizardcomponents.js similarity index 100% rename from dashboard-ui/scripts/wizardcomponents.js rename to dashboard-ui/dashboard/wizardcomponents.js diff --git a/dashboard-ui/scripts/wizardfinishpage.js b/dashboard-ui/dashboard/wizardfinishpage.js similarity index 100% rename from dashboard-ui/scripts/wizardfinishpage.js rename to dashboard-ui/dashboard/wizardfinishpage.js diff --git a/dashboard-ui/devices/ios/ios.css b/dashboard-ui/devices/ios/ios.css index 2cb4cf359b..9f71cff179 100644 --- a/dashboard-ui/devices/ios/ios.css +++ b/dashboard-ui/devices/ios/ios.css @@ -43,7 +43,7 @@ body:not(.dashboardDocument) .mainDrawerButton { .emby-tab-button { font-weight: 400; - text-transform: none; + text-transform: none!important; border-color: transparent !important; border-width: 0 !important; } diff --git a/dashboard-ui/devicesupload.html b/dashboard-ui/devicesupload.html index dbb1283f6f..df4c89b3f1 100644 --- a/dashboard-ui/devicesupload.html +++ b/dashboard-ui/devicesupload.html @@ -1,4 +1,4 @@ -
+
diff --git a/dashboard-ui/mysyncsettings.html b/dashboard-ui/mysyncsettings.html index 43dced84a2..bdf8156180 100644 --- a/dashboard-ui/mysyncsettings.html +++ b/dashboard-ui/mysyncsettings.html @@ -20,21 +20,10 @@
-

- ${HeaderCameraUpload} -

- -

${SelectCameraUploadServers}

- -
-
-
- -