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
.right-icon-wrapper | |
.row-fluid.top-indicator | |
.left.span2 | |
i.icon-double-angle-left | |
.right.span10 | |
.row-fluid.bottom-content | |
.left.span2 | |
| | |
.left-icons | |
span {% t send_message %} |
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
- (void) resize:(NSDictionary *) properties | |
{ | |
NSRect frame = [self.webView window].frame; | |
frame.size.width = [[properties valueForKey:@"width"] doubleValue]; | |
frame.size.height = [[properties valueForKey:@"height"] doubleValue]; | |
[[self.webView window] setFrame:frame display:YES]; | |
} | |
- (void) resize | |
{ |
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
server { | |
listen 80; | |
server_name staging.musterbrand-system.com *.staging.musterbrand-system.com; | |
location / { | |
proxy_pass http://127.0.0.1:6081/; | |
proxy_set_header Host $http_host; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_read_timeout 600; | |
proxy_connect_timeout 600; | |
send_timeout 600; |
NewerOlder