This file contains 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/sh | |
# Example of input | |
# { | |
# "id": "Module: Cooking", | |
# "sid": "f", | |
# "comment": "Ethanol: The tool does not indicate whether ethanol originates from renewable sources (which is likely the case as it commonly stems from plantations).", | |
# "priority": "Implemented", | |
# "actions": "IT4R implemented the tree icon indicating the ethanol comes from sustainable sources.", | |
# "estimated_hours": "0", | |
# "unhcr_comments": null, |
This file contains 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
document.getElementById('owid:0-15a66463d56').innerHTML = "<img src='https://media.giphy.com/media/l378hFSP5KFVUkxag/giphy.gif' style='margin: 0 auto; width:100%; height:600px;'>"; |
This file contains 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
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by htop configure 2.0.0, which was | |
generated by GNU Autoconf 2.69. Invocation command line was | |
$ ./configure --no-create --no-recursion | |
## --------- ## | |
## Platform. ## |
This file contains 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> | |
<meta charset="utf-8"> | |
<title></title> | |
<style media="screen" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> | |
</style> | |
<style media="screen"> | |
.bs-callout { |
This file contains 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
{ | |
// -------------------------------------------------------------------- | |
// JSHint Configuration, Strict Edition | |
// -------------------------------------------------------------------- | |
// | |
// This is a options template for [JSHint][1], using [JSHint example][2] | |
// and [Ory Band's example][3] as basis and setting config values to | |
// be most strict: | |
// | |
// * set all enforcing options to true |
This file contains 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
link: function(scope, elm, attrs) { | |
elm[0].innerHTML = ""; | |
var newTable = "<table border='1' width='100%'>"; | |
var j = 1; | |
var i = 1; | |
for (; j <= 100; j++) { | |
newTable += "<tr>"; | |
i = 1; | |
for (; i <= 10; i++) { | |
newTable += "<td align='center'>" + String(j + 64) + "</td>"; |
This file contains 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.directive('setValidity', ['$parse', | |
function($parse) { | |
// no need for form. better | |
return { | |
require: "ngModel", | |
scope: { | |
'setValidity': '=setValidity', | |
'ngDisabled': '=ngDisabled' | |
}, | |
controller: function($scope, $element, $attrs, $transclude) { |
This file contains 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.directive('xngDisabled', function($parse) { | |
return { | |
restrict: 'A', | |
scope: { | |
xngDisabled : "@" | |
}, | |
link: function (scope, element, attrs, ctrl) { | |
var setDisable = function (el, disable){ | |
if(disable === "true") { | |
//condition-disabled |
This file contains 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.filter('cutTree', [ | |
function() { | |
return function(tree) { | |
var res = []; | |
var i = 0; | |
angular.forEach(tree, function(tree1) { | |
var level1 = {}; | |
var level2 = []; | |
angular.forEach(tree.children, function(tree2) { |
This file contains 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
define(['directives/directives-module'], function(module) { | |
module.directive('xngTooltip', function($parse) { | |
return { | |
restrict: 'A', | |
priority: 0, | |
scope: true, | |
link: function postLink(scope, element, attrs, ctrl) { | |
var getter = $parse(attrs.xngTooltip), | |
setter = getter.assign, | |
value = getter(scope); |
NewerOlder