This file contains hidden or 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
<component> | |
<keymap name="$default" version="1" disable-mnemonics="false"> | |
<action id="ShowNavBar"> | |
<keyboard-shortcut first-keystroke="alt HOME"/> | |
</action> | |
<action id="FileChooser.TogglePathShowing"> | |
<keyboard-shortcut first-keystroke="control P"/> | |
</action> | |
<action id="ShowSettings"> | |
<keyboard-shortcut first-keystroke="control alt S"/> |
This file contains hidden or 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
export type TPasswordValidatorRules = { | |
length?: boolean; // min length | |
digit?: boolean; // must contain digits | |
twoCases?: boolean; // must contain different cases | |
} | |
export type TPasswordValidatorOptions = { | |
length?: number; | |
rules?: TPasswordValidatorRules; | |
} |
This file contains hidden or 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
export function isOutdatedBrowser(lowerThan?: string): boolean { | |
let cssProp: string; | |
lowerThan = lowerThan || ""; | |
//assign css3 property to IE browser version | |
if (lowerThan === "IE8" || lowerThan === "borderSpacing") { | |
cssProp = "borderSpacing"; | |
} else if (lowerThan === "IE9" || lowerThan === "boxShadow") { |
This file contains hidden or 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
{ | |
"color_scheme": "Packages/User/SublimeLinter/base16-ocean.light (SL).tmTheme", | |
"draw_shadows": false, | |
"enable_tab_scrolling": false, | |
"font_size": 14, | |
"ignored_packages": | |
[ | |
], | |
"node_path": "/Users/kerbyfc/.nvm/versions/node/v6.0.0/bin/node", | |
"spacegray_tabs_font_small": true, |
This file contains hidden or 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
[ | |
{ | |
"keys": ["g"], | |
"command": "dired_open_external", | |
"context": [ | |
{ "key": "selector", "operator": "equal", "operand": "text.dired" }, | |
{ "key": "setting.dired_rename_mode", "operand": false }, | |
{ "key": "num_selections", "operator": "equal", "operand": 1 } | |
] | |
}, |
This file contains hidden or 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
keys = [] | |
###* | |
* Output information via notification center | |
* @param {Any} obj - any object | |
* @param {Number} duration = 5 - duration in seconds | |
### | |
log = (obj, duration = 5) -> | |
if obj? | |
msg = switch |
This file contains hidden or 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
initialize: (o) -> | |
{@checkbox, @static} = o | |
- o.config = @config = _.result @collection, 'config' | |
+ o.config = @config = @getGridOptions('config') | |
(@config.default ?= {}).checkbox = true if @checkbox | |
@@ -266,16 +266,18 @@ class App.Views.Controls.ContentGrid extends App.Views.Controls.Grid | |
className: -> |
This file contains hidden or 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
------------------------------------------------------------------------------- | |
Language files blank comment code | |
------------------------------------------------------------------------------- | |
CoffeeScript 382 12053 2870 39846 | |
HTML 448 1347 651 19176 | |
SASS 217 3510 761 12622 | |
JSON 62 544 0 7778 | |
CSS 4 78 17 2607 | |
Javascript 7 232 74 1042 | |
YAML 6 35 27 310 |
This file contains hidden or 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
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
import socket | |
import sys | |
__author__ = 'serebryakov' | |
from smtplib import SMTP | |
from email.mime.text import MIMEText |
This file contains hidden or 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
diff --git a/web/front/app/scripts/views/events/query_builder/advanced_conditions_query.coffee b/web/front/app/scripts/views/events/query_builder/advanced_conditions_query.coffee | |
index 768919a..b19c0fd 100644 | |
--- a/web/front/app/scripts/views/events/query_builder/advanced_conditions_query.coffee | |
+++ b/web/front/app/scripts/views/events/query_builder/advanced_conditions_query.coffee | |
@@ -44,6 +44,7 @@ class FilterView extends App.Helpers.virtual_class( | |
return { | |
link_operator : @model.get 'link_operator' | |
isCommonPeriodUsed : @options.isCommonPeriodUsed | |
+ callbacks : @options.callbacks | |
formats : @formats |