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
// | |
// ChatViewController.m | |
// sample-chat | |
// | |
// Created by Andrey Moskvin on 6/9/15. | |
// Copyright (c) 2015 Igor Khomenko. All rights reserved. | |
// | |
#import "ChatViewController.h" | |
#import "DialogInfoTableViewController.h" |
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
Vagrant.configure("2") do |config| | |
## Choose your base box | |
config.vm.box = "precise64" | |
config.vm.box_url = "http://files.vagrantup.com/precise64.box" | |
# Modify the line below to map to the root of your project folder. | |
config.vm.synced_folder “../projects”, “/home/webteam-vm/webdev” | |
config.vm.network "forwarded_port", guest: 8000, host: 8000 | |
config.vm.network "forwarded_port", guest: 9200, host: 9200 |
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
@media only screen and (max-width: 640px) { | |
.ksu-widget--inner-box {display: none;} | |
} | |
/*KSU Widget fixes.*/ | |
table.ksu-widget th { | |
background-color: inherit; | |
} | |
table.ksu-widget td { |
NewerOlder