annotate code which we hope to be able to deprecate in the future

pull/1/head
ansuz 8 years ago
parent f6d6f81d55
commit 821c1a3ec6

@ -251,7 +251,7 @@ define([
var migrateRecentPads = common.migrateRecentPads = function (pads) { var migrateRecentPads = common.migrateRecentPads = function (pads) {
return pads.map(function (pad) { return pads.map(function (pad) {
var hash; var hash;
if (Array.isArray(pad)) { if (Array.isArray(pad)) { // TODO DEPRECATE_F
var href = pad[0]; var href = pad[0];
href.replace(/\#(.*)$/, function (a, h) { href.replace(/\#(.*)$/, function (a, h) {
hash = h; hash = h;
@ -289,7 +289,7 @@ define([
// Get the pads from localStorage to migrate them to the object store // Get the pads from localStorage to migrate them to the object store
var getLegacyPads = common.getLegacyPads = function (cb) { var getLegacyPads = common.getLegacyPads = function (cb) {
require(['/customize/store.js'], function(Legacy) { require(['/customize/store.js'], function(Legacy) { // TODO DEPRECATE_F
Legacy.ready(function (err, legacy) { Legacy.ready(function (err, legacy) {
if (err) { cb(err, null); return; } if (err) { cb(err, null); return; }
legacy.get(storageKey, function (err2, recentPads) { legacy.get(storageKey, function (err2, recentPads) {
@ -478,7 +478,6 @@ define([
} }
}; };
// TODO integrate pinning
var setPadTitle = common.setPadTitle = function (name, cb) { var setPadTitle = common.setPadTitle = function (name, cb) {
var href = window.location.href; var href = window.location.href;
var parsed = parsePadUrl(href); var parsed = parsePadUrl(href);
@ -1110,8 +1109,6 @@ define([
return $userAdmin; return $userAdmin;
}; };
// local name?
common.ready = function (f) { common.ready = function (f) {
var block = 0; var block = 0;
var env = {}; var env = {};
@ -1136,6 +1133,11 @@ define([
store = common.store = env.store = storeObj; store = common.store = env.store = storeObj;
var proxy = getProxy(); var proxy = getProxy();
/* TODO log users out if they are logged in, but don't have
signing keys stored in their object.
*/
var network = getNetwork(); var network = getNetwork();
$(function() { $(function() {
@ -1165,8 +1167,6 @@ define([
console.log("logged in. pads will be pinned"); console.log("logged in. pads will be pinned");
block++; block++;
// TODO setTimeout in case rpc doesn't
// activate in reasonable time?
Pinpad.create(network, proxy, function (e, call) { Pinpad.create(network, proxy, function (e, call) {
if (e) { if (e) {
console.error(e); console.error(e);

Loading…
Cancel
Save