Example on how d3 transitions can be used in AngularJS
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
| 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 { |
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
| <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" |
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
| 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(); | |
| }); |
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
| script: | |
| - cp -a src build | |
| - ls -la build | |
| after_success: .travis/make-release.sh |
Directive to add space after an ngRepeat element
To use:
<li ng-repeat="item in items" add-space-after>
</li>
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
| #!/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 |
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
| !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 |
Seed for a blog article to convert from jQuery to jqLite.
Finding all the bad usages of selectors in find and bad css calls.
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
| var Container = React.createClass({ | |
| getInitialState: function () { | |
| return { | |
| contentComponent: ContentA, | |
| headerProps: null | |
| }; | |
| }, | |
| _toggleContent: function () { |