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