Skip to content

Instantly share code, notes, and snippets.

@fend25
fend25 / WebStorm.cmd
Created September 24, 2019 07:18 — forked from M1chaelTran/WebStorm.cmd
Add `Open with WebStorm` to Windows right click context menu
@echo off
:: change the path below to match your installed version
SET WebStormPath=C:\Program Files\JetBrains\WebStorm 2017.2.2\bin\webstorm64.exe
echo Adding file entries
@reg add "HKEY_CLASSES_ROOT\*\shell\WebStorm" /t REG_SZ /v "" /d "Open with WebStorm" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\WebStorm" /t REG_EXPAND_SZ /v "Icon" /d "%WebStormPath%,0" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\WebStorm\command" /t REG_SZ /v "" /d "%WebStormPath% \"%%1\"" /f
Online Builder, Basis and Full version
al-init $element
al-model - proxy for al-value, al-focused, al-checked ...
про эвенты и атрибуты - без компонентов
@event
@keydown.alt.control.shift.meta.enter
@fend25
fend25 / 1.js
Last active December 18, 2015 19:16 — forked from lega911/1.js
alight.filters.throttle = {
data: {
delay: 0,
to: null,
scope: null
}
init: function(delay, scope) {
data.delay = Number(delay);
data.to = null;
data.scope = scope;