field =
dataType: 'reference'
options: [... tagValueIds ...]
format_json:
contexts: [
{
name: 'iPadNoteCreationModal'
tagValueIds: [...]
},
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.1/angular.min.js"></script> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body ng-app="myApp"> |
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
| .box { | |
| width: 100px; | |
| height: 100px; | |
| border: 10px solid blue; | |
| margin: 30px; | |
| } | |
| .out { | |
| box-shadow: 10px 0; | |
| } |
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
| .box { | |
| width: 100px; | |
| height: 100px; | |
| border: 10px solid blue; | |
| margin: 30px; | |
| } | |
| .out { | |
| box-shadow: 10px 0; | |
| } |
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
| { | |
| "data": { | |
| "code": "400.1", | |
| "meta": { | |
| "msg": "multiple points" | |
| } | |
| }, | |
| "status": 400, | |
| "config": { | |
| "method": "GET", |
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
| <h1>Screen Details</h1> | |
| <ul ng-if="smartlist"> | |
| <li> | |
| <span>Created By</span> | |
| <span>{{ smartlist.createdBy | userShortName }}, {{ smartlist.createdOn | date: "shortDate" }}</span> | |
| </li> | |
| <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
| <!-- Does this make sense for our component APIs? --> | |
| <smartlist-details | |
| smartlist-id="smartlistId" | |
| ></smartlist-details> | |
| <ipad-subscriptions | |
| smartlist-id="smartlistId" | |
| user-id="userId" | |
| fund-id="fundId" |
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
| /* returns an array of unique classes in the DOM */ | |
| var getUniqueClasses = function() { | |
| var elementArray = [].slice.call(document.querySelectorAll('*')); | |
| return _(elementArray) | |
| .pluck('classList') | |
| .map(_.toArray) | |
| .flatten() | |
| .unique() |
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
| trues = (n) -> [1..n].map Boolean | |
| # array of functions to be speed tested | |
| tests = [ | |
| [ | |
| ( | |
| (bools) -> _.every bools # .097ms | |
| ) | |
| trues(1000) |
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
| module.exports = (robot) -> | |
| robot.hear /^(.+)$/i, (res) -> | |
| logToRedshift | |
| message: res.match[1] | |
| user: res.message.user.name.toLowerCase() |
OlderNewer