mirror of
https://github.com/apankrat/nullboard.git
synced 2025-08-01 10:50:30 +02:00
replace Object.assign with $.extend
This commit is contained in:
@@ -859,11 +859,6 @@
|
|||||||
{
|
{
|
||||||
alert('Hmmm... no "localStorage" support');
|
alert('Hmmm... no "localStorage" support');
|
||||||
}
|
}
|
||||||
else
|
|
||||||
if (typeof(Object.assign) === 'undefined')
|
|
||||||
{
|
|
||||||
alert('Hmmm... no "Object.assign" support');
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* poor man's error handling -- $fixme
|
* poor man's error handling -- $fixme
|
||||||
@@ -1095,7 +1090,7 @@
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return Object.assign(new Board, board);
|
return $.extend(new Board, board);
|
||||||
}
|
}
|
||||||
|
|
||||||
function loadBoard(board_id)
|
function loadBoard(board_id)
|
||||||
|
Reference in New Issue
Block a user