Commit 23d42cbb authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

delete array_shift

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@51864 954022d7-b5bf-4e40-9824-e11837661b57
parent c5859fd6
......@@ -1919,22 +1919,6 @@ if (typeof(obj._otherProps._scale_formatter) == 'function') {
return OfficeExcel.isIE7() || OfficeExcel.isIE8();
}
/**
* A basic Array shift gunction
*
* @param object The numerical array to work on
* @return The new array
*/
OfficeExcel.array_shift = function (arr)
{
var ret = [];
for (var i=1; i<arr.length; ++i) ret.push(arr[i]);
return ret;
}
/**
* These are older functions that were used before the move to seperate gutter settings
*/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment