/
githubmirror
/
amphtml
Обзор
Документация
Войти
/
githubmirror
/
amphtml
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ads/vendors/microad.js
33 строки
1 KB
Ryan Cebulko
♻️ Auto-fix imports to use aliases (package.js, .eslintrc, + import updates) (#34812)
12 июн 2021, 01:50
Не верифицирован
12 июн 2021, 01:50
6ed742c
Код
Авторство
О чём код?
/** * Copyright 2016 The AMP HTML Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS-IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import {loadScript, validateData} from '#3p/3p'; /* global MicroAd: false */ /** * @param {!Window} global * @param {!Object} data */ export function microad(global, data) { // TODO: check mandatory fields validateData(data, [], ['spot', 'url', 'referrer', 'ifa', 'appid', 'geo']); global.document.getElementById('c').setAttribute('id', data.spot); loadScript(global, 'https://j.microad.net/js/camp.js', () => { MicroAd.Compass.showAd(data); }); }