update components

This commit is contained in:
Luke Pulverenti 2016-04-28 15:11:43 -04:00
parent de67415aa8
commit 092fb1f047
13 changed files with 40 additions and 22 deletions

View File

@ -32,14 +32,14 @@
"web-component-tester": "^4.0.0",
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
},
"homepage": "https://github.com/polymerelements/iron-icon",
"homepage": "https://github.com/PolymerElements/iron-icon",
"_release": "1.0.8",
"_resolution": {
"type": "version",
"tag": "v1.0.8",
"commit": "f36b38928849ef3853db727faa8c9ef104d611eb"
},
"_source": "git://github.com/polymerelements/iron-icon.git",
"_source": "git://github.com/PolymerElements/iron-icon.git",
"_target": "^1.0.0",
"_originalSource": "polymerelements/iron-icon"
"_originalSource": "PolymerElements/iron-icon"
}

View File

@ -28,12 +28,12 @@
"web-animations-next-lite.dev.html",
"web-animations-next-lite.dev.js"
],
"version": "2.2.0",
"_release": "2.2.0",
"version": "2.2.1",
"_release": "2.2.1",
"_resolution": {
"type": "version",
"tag": "2.2.0",
"commit": "b5d91413acee82aadd01a18880cb84a5d883047d"
"tag": "2.2.1",
"commit": "45d8e40300e82ff02ccfbbc78c89500de0f5616f"
},
"_source": "git://github.com/web-animations/web-animations-js.git",
"_target": "^2.2.0",

View File

@ -1,3 +1,21 @@
### 2.2.1 - *April 28 2016*
* [Deprecated invalid timing inputs](https://github.com/web-animations/web-animations-next/pull/437) as they will soon throw [TypeErrors](https://github.com/web-animations/web-animations-next/pull/426) in native browsers.
For example, this is deprecated and will eventually throw a TypeError:
element.animate([], {
duration: -1,
iterationStart: -1,
iterations: -1,
easing: 'garbage string',
});
* [Fixed polyfill crash in browsers based on Chromium 36 to 46.](https://github.com/web-animations/web-animations-next/pull/434)
* [Increased cubic-bezier accuracy.](https://github.com/web-animations/web-animations-next/pull/428)
* [Added support for grad and turn units for angles.](https://github.com/web-animations/web-animations-next/pull/427)
### 2.2.0 - *April 6 2016*
* Deprecated the use of hyphens in property names.

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -2,6 +2,10 @@
font-size: 15px;
}
body:not(.dashboardDocument) .mainDrawerButton {
display: none !important;
}
.ui-body-b select {
-webkit-appearance: none;
}

View File

@ -11,9 +11,7 @@
html += '<paper-icon-button icon="' + backIcon + '" class="headerButton headerButtonLeft headerBackButton hide"></paper-icon-button>';
if (AppInfo.enableNavDrawer) {
html += '<paper-icon-button icon="menu" class="headerButton mainDrawerButton barsMenuButton headerButtonLeft"></paper-icon-button>';
}
html += '<paper-icon-button icon="menu" class="headerButton mainDrawerButton barsMenuButton headerButtonLeft"></paper-icon-button>';
html += '<paper-icon-button icon="menu" class="headerButton headerAppsButton barsMenuButton headerButtonLeft"></paper-icon-button>';

View File

@ -31,7 +31,7 @@ pageIdOn('pageshow', 'myPreferencesMenuPage', function () {
page.querySelector('.headerUser').innerHTML = user.Name;
if (!(AppInfo.isNativeApp && browserInfo.safari) && user.Policy.IsAdministrator) {
if (user.Policy.IsAdministrator) {
page.querySelector('.adminSection').classList.remove('hide');
} else {
page.querySelector('.adminSection').classList.add('hide');

View File

@ -1273,7 +1273,6 @@ var AppInfo = {};
AppInfo.enableDetailPageChapters = true;
AppInfo.enableDetailsMenuImages = true;
AppInfo.enableMovieHomeSuggestions = true;
AppInfo.enableNavDrawer = true;
AppInfo.enableSearchInTopMenu = true;
AppInfo.enableHomeFavorites = true;
AppInfo.enableNowPlayingBar = true;
@ -1294,7 +1293,6 @@ var AppInfo = {};
if (isCordova) {
//AppInfo.enableSectionTransitions = true;
AppInfo.enableNavDrawer = false;
AppInfo.enableSearchInTopMenu = false;
AppInfo.enableHomeFavorites = false;
AppInfo.enableHomeTabs = false;