Directive to add space after an ngRepeat element
To use:
<li ng-repeat="item in items" add-space-after>
</li>
!function(){function n(n,t){return t>n?-1:n>t?1:n>=t?0:0/0}function t(n){return null===n?0/0:+n}function e(n){return!isNaN(n)}function r(n){return{left:function(t,e,r,u){for(arguments.length<3&&(r=0),arguments.length<4&&(u=t.length);u>r;){var i=r+u>>>1;n(t[i],e)<0?r=i+1:u=i}return r},right:function(t,e,r,u){for(arguments.length<3&&(r=0),arguments.length<4&&(u=t.length);u>r;){var i=r+u>>>1;n(t[i],e)>0?u=i:r=i+1}return r}}}function u(n){return n.length}function i(n){for(var t=1;n*t%1;)t*=10;return t}function o(n,t){for(var e in t)Object.defineProperty(n.prototype,e,{value:t[e],enumerable:!1})}function a(){this._=Object.create(null)}function c(n){return(n+="")===da||n[0]===ma?ma+n:n}function l(n){return(n+="")[0]===ma?n.slice(1):n}function s(n){return c(n)in this._}function f(n){return(n=c(n))in this._&&delete this._[n]}function h(){var n=[];for(var t in this._)n.push(l(t));return n}function g(){var n=0;for(var t in this._)++n;return n}function p(){for(var n in this._)return!1;return!0}function v(){this._=Object |
#!/bin/bash | |
IFS=' ' | |
while read local_ref local_sha remote_ref remote_sha | |
do | |
if [ "$remote_ref" = "refs/heads/master" ] | |
then | |
echo "Pushing to master" | |
read -p "You're about to push $local_ref to master, is that what you intended? [y|n] " -n 1 -r < /dev/tty | |
echo |
Directive to add space after an ngRepeat element
To use:
<li ng-repeat="item in items" add-space-after>
</li>
script: | |
- cp -a src build | |
- ls -la build | |
after_success: .travis/make-release.sh |
var page = require('webpage').create(); | |
page.open('http://codepen.io/chrisirhc/full/xfhbo', function() { | |
console.log('Script never gets here on PhantomJS 1.9.7'); | |
phantom.exit(); | |
}); |
<p class="input-group"> | |
<input type="text" class="form-control" | |
ng-model="daterange[0]" | |
max-date="daterange[1]" | |
datepicker-popup is-open="isStartOpen" | |
/> | |
<span class="input-group-btn"><button type="button" class="btn btn-default" ng-click="startOpen($event)"><i class="glyphicon glyphicon-calendar"></i></button></span> | |
</p> - | |
<p class="input-group"> | |
<input type="text" class="form-control" |
Example on how d3 transitions can be used in AngularJS
package com.example.db.mongo; | |
import java.lang.annotation.Retention; | |
import static java.lang.annotation.RetentionPolicy.RUNTIME; | |
@Retention(RUNTIME) | |
// Override the serializer for ObjectId annotation | |
public @interface MongoId { |
<te-widget> | |
<te-widget-config> | |
<div class="te-dash-config-search ui-form"> | |
<input class="te-dash-config-search-field" | |
type="text" ng-model="tempCfg.search" ng-change="testLimit = 10" /> | |
</div> | |
</te-widget-config> | |
<te-widget-body> | |
<te-timeseries timeseries-config="widget.config" /> |
.directive("teDragitem5", [ | |
'$parse', | |
function ($parse) { | |
return { | |
link: function (scope, element, attr) { | |
var dragElement = element; | |
// Many other quirks in IE9. Not worth solving. |