A: You need to set ng-trim to false.
<input ng-model="model.name" ng-trim="false />
| interface Writer { | |
| id: number; | |
| username: string; | |
| notIncludedAsWell: string; | |
| } | |
| interface Post { | |
| id: number; | |
| content: string; | |
| notIncluded: string; |
| sudo apt-get install libblas3 libblas-dev | |
| sudo apt-get install liblapack3gf liblapack-dev | |
| sudo apt-get install gfortran | |
| sudo apt-get install libhdf5-dev | |
| sudo chmod -R o+w /usr/local/lib/python2.7/dist-packages | |
| sudo chmod -R o+w /usr/local/bin | |
| pip install numpy |
| import time | |
| import math | |
| import aetros.backend | |
| job = aetros.backend.start_job('marcj/example-1', '----') | |
| logging_channel = job.create_channel('logging_channel', type=aetros.backend.JobChannel.TEXT) | |
| traces = [ | |
| { |
| From previous released tag to latest tag: | |
| PREVIOUS=`git describe --abbrev=0 --tags $(git rev-list --tags --skip=1 --max-count=1)` | |
| CURREN_TAG=`git describe --abbrev=0 --tags` | |
| git log --format="%h - %s <%an>" "$PREVIOUS..$CURREN_TAG" | |
| Format: | |
| git log --format="%h - %s <%an>" "1.2.0..master" |
| cp /Applications/PhpStorm.app/Contents/bin/phpstorm.vmoptions ~/Library/Preferences/WebIde* | |
| echo -ne "\n-Dawt.useSystemAAFontSettings=lcd\n-Dawt.java2d.opengl=true" >> ~/Library/Preferences/WebIde*/phpstorm.vmoptions |
| <?php | |
| $loader = require_once __DIR__ . '/../vendor/autoload.php'; | |
| include __DIR__ . '/generated-conf/config.php'; | |
| $loader->add('', __DIR__ . '/generated-classes'); | |
| \Propel\Runtime\Propel::disableInstancePooling(); | |
| $con = \Propel\Runtime\Propel::getConnection('bookstore'); |
| diff -ur a/js/tinymce/classes/Editor.js b/js/tinymce/classes/Editor.js | |
| --- a/js/tinymce/classes/Editor.js 2013-07-18 14:13:44.000000000 +0200 | |
| +++ b/js/tinymce/classes/Editor.js 2013-07-27 14:24:58.000000000 +0200 | |
| @@ -1009,6 +1009,12 @@ | |
| self.getWin().focus(); | |
| } | |
| + if (document != self.getDoc()) { | |
| + //WebKit in iOs needs a window focus call if the current document is different than self.getDoc() | |
| + //in inline mode. Scenario: create a inline editor of a contentEditable div inside a iframe. |
| .. | |
| Include /etc/apache2/vhost-macro.conf | |
| Include /srv/vhosts |
| <?php | |
| class Issue651Test extends PHPUnit_Framework_TestCase | |
| { | |
| public function testIndex() | |
| { | |
| $updatedSchema = ' | |
| <database> | |
| <table name="notification_type"> |