fix undefined bugs

This commit is contained in:
Matias Alejo Garcia 2014-07-07 19:38:45 -03:00
parent d4c9c87076
commit d099db6cde
2 changed files with 4 additions and 1 deletions

View File

@ -220,6 +220,7 @@ Insight.prototype._requestNode = function(options, callback) {
};
Insight.prototype._requestBrowser = function(options, callback) {
var self = this;
var request = new XMLHttpRequest();
var url = (options.schema || 'http') + '://' + options.host;
@ -242,6 +243,7 @@ Insight.prototype._requestBrowser = function(options, callback) {
return callback(new Error('Insight request timeout'));
};
request.onreadystatechange = function() {
if (request.readyState !== 4) return;
var ret, errTxt, e;

View File

@ -4,8 +4,9 @@ var bitcore = require('bitcore');
angular.module('copayApp.services')
.factory('controllerUtils', function($rootScope, $sce, $location, notification, $timeout, Socket, video, uriHandler) {
var root = {};
root.getVideoMutedStatus = function(copayer) {
if (!$rootScope.videoInfo) return;
var vi = $rootScope.videoInfo[copayer]
if (!vi) {
return;