Sha256: 8202f6fd66f96bbd20ad6729b3d2ad65fa2be456752caf68c3e1ecb330dbee7a

Contents?: true

Size: 410 Bytes

Versions: 13

Compression:

Stored size: 410 Bytes

Contents

const jsonLoader = input => {
  const file = input.files[0];
  const reader = new FileReader();
  reader.onload = () => {
    const text = reader.result;
    const outputTextField = document.getElementById('gce_json');
    outputTextField.value = text;
  };
  reader.readAsText(file);
};

export const registerLegacy = () => {
  window.tfm = Object.assign(window.tfm || {}, {
    gce: { jsonLoader },
  });
};

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
foreman_google-3.0.5 webpack/legacy.js
foreman_google-3.0.4 webpack/legacy.js
foreman_google-3.0.2 webpack/legacy.js
foreman_google-3.0.1 webpack/legacy.js
foreman_google-3.0.0 webpack/legacy.js
foreman_google-2.0.1 webpack/legacy.js
foreman_google-2.0.0 webpack/legacy.js
foreman_google-1.0.4 webpack/legacy.js
foreman_google-1.0.3 webpack/legacy.js
foreman_google-1.0.2 webpack/legacy.js
foreman_google-1.0.1 webpack/legacy.js
foreman_google-1.0.0 webpack/legacy.js
foreman_google-0.0.2 webpack/legacy.js