updated nuget

This commit is contained in:
Luke Pulverenti 2015-07-10 14:30:42 -04:00
parent 4e815ceaf0
commit 4b951f485f
4 changed files with 16 additions and 35 deletions

View File

@ -25,14 +25,14 @@
"web-component-tester": "*",
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
},
"homepage": "https://github.com/PolymerElements/iron-meta",
"homepage": "https://github.com/polymerelements/iron-meta",
"_release": "1.0.3",
"_resolution": {
"type": "version",
"tag": "v1.0.3",
"commit": "91529259262b0d8f33fed44bc3fd47aedf35cb04"
},
"_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"
}

View File

@ -34,7 +34,7 @@
"tag": "v1.0.7",
"commit": "c65f5ce6b898bb756fca35cedaa53c3e8011abeb"
},
"_source": "git://github.com/PolymerElements/paper-styles.git",
"_source": "git://github.com/polymerelements/paper-styles.git",
"_target": "^1.0.0",
"_originalSource": "PolymerElements/paper-styles"
"_originalSource": "polymerelements/paper-styles"
}

View File

@ -509,18 +509,7 @@
self.canPlayNativeHls = function () {
// Don't use HLS on android 4.x, regardless of what the browser reports
//if ($.browser.android) {
// var agent = navigator.userAgent.toLowerCase();
// for (var i = 0; i <= 4; i++) {
// if (agent.indexOf('android 4.' + i) != -1) {
// return false;
// }
// }
//}
if ($.browser.android && AppInfo.isNativeApp) {
if (AppInfo.isNativeApp) {
return true;
}
@ -541,21 +530,9 @@
return true;
}
if ($.browser.chrome) {
// viblast can help us here
//return true;
return window.MediaSource != null;
}
if ($.browser.msie) {
// viblast can help us here
//return true;
return window.MediaSource != null;
}
return false;
// viblast can help us here
//return true;
return window.MediaSource != null;
};
self.changeStream = function (ticks, params) {

View File

@ -327,10 +327,14 @@
$('a', elem).on('click', function () {
var card = $(this).parents('.card');
var textElem = $('.cardText', card);
var card = this;
var text = textElem.html();
if (!this.classList.contains('card')) {
card = $(this).parents('.card')[0];
}
var textElem = $('.cardText', card);
var text = textElem.text();
LibraryMenu.setTitle(text);
});