МедиаВики:Common.js: Засвар хоорондын ялгаа

No edit summary
No edit summary
1-р мөр: 1-р мөр:
var ___mendee_shiftKey_active__ = false;
/**
/**
  *  
  *  
17-р мөр: 19-р мөр:


     return isOverflowing;
     return isOverflowing;
}
try {
    window.addEventListener('keydown', function (event) {
        if (event.key === "Shift") {
            ___mendee_shiftKey_active__ = true;
        }
    });
    window.addEventListener('keyup', function (event) {
        if (event.key === "Shift") {
            ___mendee_shiftKey_active__ = false;
        }
    });
} catch (error) {
}
}


36-р мөр: 53-р мөр:
             } catch (e) { }
             } catch (e) { }
             return function (event) {
             return function (event) {
                 if (event.shiftKey) {
                 if (___mendee_shiftKey_active__) {
                     return;
                     return;
                 }
                 }