Clog to output in the browser console (#28667)

This commit is contained in:
Robert Monfera 2019-01-14 18:13:11 +01:00 committed by GitHub
parent 8357fccb47
commit 91fa7b712b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

View file

@ -19,6 +19,6 @@
import { clog } from './clog';
export const commonFunctions = [
export const browserFunctions = [
clog,
];

View file

@ -17,4 +17,7 @@
* under the License.
*/
import '../common/register';
import { browserFunctions } from './index';
// eslint-disable-next-line no-undef
browserFunctions.forEach(canvas.register);

View file

@ -17,7 +17,4 @@
* under the License.
*/
import { commonFunctions } from './index';
// eslint-disable-next-line no-undef
commonFunctions.forEach(canvas.register);
import '../common/register';