Name Copy & Paste By 5A LD

Menu For Copy Names In Agar.io and other agar by 5A LD

< Spätná väzba na Name Copy & Paste By 5A LD

Otázka/komentár

§
Pridaný: 06.07.2017

Simplification

Hey, just wanted to let you know you can simplify the inject function to:

function inject(type, code) {
    var inject  = document.createElement(type);
    inject.type = 'text/' + (type == 'script' ? 'javascript' : 'css'); // You don't even really need this line..
    inject.textContent = code;
    (document.head || document.documentElement).appendChild(inject);
}

// Only functional difference from before is the type arguments it accepts is 'script' and 'style'.
// Line 3 uses a ternary operator:
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Conditional_Operator 

Pridať odpoveď

Aby ste mohli pridať odpoveď, prihláste sa.