const roomNumberInput = adForm.querySelector("#room_number");
const capacityInput = adForm.querySelector("#capacity");
// на selectы с кол-вом комнат и гостей надо добавить обработчик на событие change
// Если пользователь изменил кол-во гостей(capacity), то сработает обработчик события для capacityInput
// в нем надо проверить, что текущее кол-во гостей можно разместить в выбранном кол-ве комнат
// Аналогично для кол-ва комнат(roomNumber).
capacityInput.addEventListener("change", (evt) => {
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="pane"> | |
<div id="title">Resize, Drag or Snap Me!</div> | |
</div> | |
<div id="ghostpane"></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { AppRoute } from '../../const'; | |
import { Point } from '../../types/offers'; | |
import Header from '../header/header'; | |
import Map from '../map/map'; | |
import { useState } from 'react'; | |
import LocationsList from '../locations-list/locations-list'; | |
import { connect, ConnectedProps } from 'react-redux'; | |
import { bindActionCreators, Dispatch } from 'redux'; | |
import { changeCity } from '../../store/action'; | |
import { State } from '../../types/state'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/sinonjs/fake-timers/issues/114 | |
https://stackoverflow.com/questions/50783013/how-to-timeout-promises-in-jest | |
https://stackoverflow.com/questions/51126786/jest-fake-timers-with-promises | |
https://github.com/facebook/jest/issues/5165 | |
https://github.com/facebook/jest/issues/5165#issuecomment-640212362 — Use sinon fake timer config directly | |
https://github.com/facebook/jest/issues/10221 | |
Transpile hack in jest: |
First off, credit goes to github.com/rudolfratusinski for leading the way here.
https://gist.github.com/rudolfratusinski/a4d9e3caff11a4d9d81d2e84abc9afbf
In a very similar approach, copy the files from the Parallels installation media and drop them in a folder somewhere (eg. ~/parallels_fixed)
Go to the kmods directory (cd ~/parallels_fixed/kmods
) and extract the files (tar -xzf prl_mod.tar.gz
)
Remove prl_mod.tar.gz
file from that directory (rm prl_mod.tar.gz
)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
angular.module('app', []) | |
.decorator('$controller', function ($delegate) { | |
return function () { | |
var result = $delegate.apply(null, arguments); | |
return result; | |
}; | |
}) | |
.factory('lib',function ($q) { | |
return $q.when('Hello'); | |
}) |
Эта статья является вольным изложением идей из этой замечательной книги JavaScript Spressore (обязательно к прочтению).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo chown -R $USER ~/.npm | |
sudo chown -R $USER /usr/local/lib/node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Has your OS/FS/disk lost your data? | |
# cd to the directory containing your project repositories and run the command | |
# below. (It's long; make sure you get it all.) It finds all of your git repos | |
# and runs paranoid fscks in them to check their integrity. | |
(set -e && find . -type d -and -iname '.git' | while read p; do (cd "$(dirname "$p")" && (set -x && git fsck --full --strict)); done) && echo "OK" | |
# I have 81 git repos in my ~/proj directory and had no errors. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
map $host $projects_root { | |
default "/Volumes/Storage_1/Workspace"; | |
} | |
include sites/*.conf; | |
include /Volumes/Storage_1/Workspace/**/*.conf; |
NewerOlder