Выгрузить модули
This commit is contained in:
18
модули/муром.лпо_1.0.0.js
Normal file
18
модули/муром.лпо_1.0.0.js
Normal file
@@ -0,0 +1,18 @@
|
||||
муром.создатьЛевуюПравуюОбласти = function()
|
||||
{
|
||||
// Левая область.
|
||||
var ло = document.createElement("div");
|
||||
ло.id="левая-область";
|
||||
ло.style.cssText =
|
||||
"position: fixed; left: 0; top: 0; bottom: 0; width: 50%;";
|
||||
document.body.appendChild(ло);
|
||||
|
||||
// Правая область.
|
||||
var по = document.createElement("div");
|
||||
по.id="правая-область";
|
||||
по.style.cssText =
|
||||
"position: fixed; right: 0; top: 0; bottom: 0; width: 50%;";
|
||||
document.body.appendChild(по);
|
||||
|
||||
return [ло, по];
|
||||
};
|
||||
Reference in New Issue
Block a user