This commit is contained in:
Ben Toews 2015-10-26 10:25:42 -06:00
Родитель c2b5b16ec9
Коммит 36775a1969
1 изменённых файлов: 267 добавлений и 265 удалений

Просмотреть файл

@ -10,10 +10,11 @@
'use strict';
if (!('u2f' in window) && 'chrome' in window && chrome.runtime) {
/** Namespace for the U2F api.
* @type {Object}
*/
var u2f = u2f || {};
var u2f = {};
/**
* The U2F extension id
@ -296,3 +297,4 @@ u2f.register = function(registerRequests, signRequests,
port.postMessage(req);
});
};
}