diff --git a/dashboard-ui/bower_components/iron-flex-layout/.bower.json b/dashboard-ui/bower_components/iron-flex-layout/.bower.json index 72cbf23fe..3d6c4f44e 100644 --- a/dashboard-ui/bower_components/iron-flex-layout/.bower.json +++ b/dashboard-ui/bower_components/iron-flex-layout/.bower.json @@ -1,6 +1,6 @@ { "name": "iron-flex-layout", - "version": "1.2.3", + "version": "1.3.0", "description": "Provide flexbox-based layouts", "keywords": [ "web-components", @@ -28,14 +28,14 @@ "web-component-tester": "^4.0.0" }, "ignore": [], - "homepage": "https://github.com/polymerelements/iron-flex-layout", - "_release": "1.2.3", + "homepage": "https://github.com/PolymerElements/iron-flex-layout", + "_release": "1.3.0", "_resolution": { "type": "version", - "tag": "v1.2.3", - "commit": "3ae26f4a248ccc7a4c035590473840342182293e" + "tag": "v1.3.0", + "commit": "434224c8cf63cb4bb1b66edb0dc58e4484f7c5b2" }, - "_source": "git://github.com/polymerelements/iron-flex-layout.git", + "_source": "git://github.com/PolymerElements/iron-flex-layout.git", "_target": "^1.0.0", - "_originalSource": "polymerelements/iron-flex-layout" + "_originalSource": "PolymerElements/iron-flex-layout" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/iron-flex-layout/bower.json b/dashboard-ui/bower_components/iron-flex-layout/bower.json index ea424c9aa..838fd42ed 100644 --- a/dashboard-ui/bower_components/iron-flex-layout/bower.json +++ b/dashboard-ui/bower_components/iron-flex-layout/bower.json @@ -1,6 +1,6 @@ { "name": "iron-flex-layout", - "version": "1.2.3", + "version": "1.3.0", "description": "Provide flexbox-based layouts", "keywords": [ "web-components", diff --git a/dashboard-ui/bower_components/iron-flex-layout/classes/iron-flex-layout.html b/dashboard-ui/bower_components/iron-flex-layout/classes/iron-flex-layout.html index 283c2a8dd..0c6aad604 100644 --- a/dashboard-ui/bower_components/iron-flex-layout/classes/iron-flex-layout.html +++ b/dashboard-ui/bower_components/iron-flex-layout/classes/iron-flex-layout.html @@ -10,6 +10,10 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dashboard-ui/bower_components/iron-flex-layout/iron-flex-layout.html b/dashboard-ui/bower_components/iron-flex-layout/iron-flex-layout.html index 66934dbf4..7315faf1c 100644 --- a/dashboard-ui/bower_components/iron-flex-layout/iron-flex-layout.html +++ b/dashboard-ui/bower_components/iron-flex-layout/iron-flex-layout.html @@ -11,11 +11,33 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN + + + iron-flex-layout-classes tests + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dashboard-ui/bower_components/iron-flex-layout/test/iron-flex-layout.html b/dashboard-ui/bower_components/iron-flex-layout/test/iron-flex-layout.html index 9c153f3d6..8dc9b7494 100644 --- a/dashboard-ui/bower_components/iron-flex-layout/test/iron-flex-layout.html +++ b/dashboard-ui/bower_components/iron-flex-layout/test/iron-flex-layout.html @@ -10,7 +10,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN --> - iron-flex-behavior tests + iron-flex-layout tests diff --git a/dashboard-ui/css/site.css b/dashboard-ui/css/site.css index c4515e9bc..db45b5a82 100644 --- a/dashboard-ui/css/site.css +++ b/dashboard-ui/css/site.css @@ -1067,7 +1067,7 @@ h1 .imageLink { } .fieldDescription { - padding-left: 5px; + padding-left: 2px; font-weight: normal; white-space: normal !important; } diff --git a/dashboard-ui/metadataimages.html b/dashboard-ui/metadataimages.html index e92de37f4..89ff0edb1 100644 --- a/dashboard-ui/metadataimages.html +++ b/dashboard-ui/metadataimages.html @@ -4,7 +4,7 @@ ${TitleMetadata} -
+
@@ -41,25 +41,21 @@
diff --git a/dashboard-ui/scripts/metadataimagespage.js b/dashboard-ui/scripts/metadataimagespage.js index 33b310912..2778d197d 100644 --- a/dashboard-ui/scripts/metadataimagespage.js +++ b/dashboard-ui/scripts/metadataimagespage.js @@ -234,25 +234,22 @@ return; } - html += '
'; - html += '' + Globalize.translate('LabelMetadataSavers') + ''; + html += '
' + Globalize.translate('LabelMetadataSavers') + '
'; + html += '
'; for (var i = 0, length = plugins.length; i < length; i++) { var plugin = plugins[i]; - var id = 'chkMetadataSaver' + i; - var isChecked = config.DisabledMetadataSavers.indexOf(plugin.Name) == -1 ? ' checked="checked"' : ''; - html += ''; - html += ''; + html += '' + plugin.Name + ''; } - html += '
'; - html += '
' + Globalize.translate('LabelMetadataSaversHelp') + '
'; + html += '
'; + html += '
' + Globalize.translate('LabelMetadataSaversHelp') + '
'; - $('.metadataSavers', page).html(html).show().trigger('create'); + page.querySelector('.metadataSavers').innerHTML = html; } function renderMetadataFetchers(page, type, config, metadataInfo) { @@ -416,7 +413,11 @@ function saveSettingsIntoConfig(form, config) { - config.DisabledMetadataSavers = $('.chkMetadataSaver:not(:checked)', form).get().map(function (c) { + config.DisabledMetadataSavers = $('.chkMetadataSaver', form).get().filter(function (c) { + + return !c.checked; + + }).map(function (c) { return c.getAttribute('data-pluginname');