I hereby claim:
- I am megoth on github.
- I am megoth (https://keybase.io/megoth) on keybase.
- I have a public key ASBfT_c6zgj_kI8nXwXOWAx2usiHCx9WgOsq3YBStCIcDAo
To claim this, I am signing this object:
<p>Hei,</p> | |
<p>Denne gruppa har ikke hatt så mye aktivitet, og etter den siste flausen til Meetup (du kan lese mer om det <a href="https://news-proxy.freecodecamp.org/news/the-wework-meetup-debacle-and-a-new-chapter/">her</a>) er vi rett og slett blitt usikre på om vi ønsker å bruke Meetup til å organisere arrangementer fremover.</p> | |
<p><strong>Vi vil legge ned denne gruppen:</strong> Vi venter et par uker, i tilfelle folk har spørsmål, og anbefaler folk å følge med på en eller flere av informasjonskanalene våre for oppdateringer.</p> | |
<ul> | |
<li>This Week in Solid: Ukentlig nyhetsbrev som kan mottas <a href="https://tinyletter.com/ThisWeekInSolid">som epost</a> eller <a href="https://github.com/solid/information/blob/master/weekly-updates/this-week-in-solid.md">ses via GitHub</a></li> | |
<li><a href="https://forum.solidproject.org/">Forum på solidproject.com</a></li> | |
<li></li> | |
<li><a href="https://gitter.im/solid/chat">solid/chat på gitter.com</a></li> | |
</ul> | |
<p><strong>Vi lager ikke noen alternativ Meetup-gruppe e |
I hereby claim:
To claim this, I am signing this object:
cd "C:\Program Files\Microsoft SQL Server\110\Tools\Binn" | |
SqlLocalDB.exe start "Projects" | |
pause | |
SqlLocalDB.exe stop "Projects" |
$scope.$on("checkboxSurveyCompleted", function (event, uri) { | |
$scope.showButton = true; | |
$scope.$digest(); | |
var toSubmit = { exerciseId: $scope.exercise.id }; | |
$scope.result.$complete(toSubmit) | |
.success(function () { | |
$scope.$emit("SetExerciseUrl", uri); | |
}); | |
}); |
function (scope, element) { | |
function iframeSetup(frameRef) { | |
var iframe = frameRef.contentWindow ? frameRef.contentWindow.document : frameRef.contentDocument; | |
var finished = iframe.getElementById("ExerciseComplete") != null; | |
if (finished) { | |
scope.$emit("checkboxSurveyCompleted", scope.uriToExercises); | |
return; | |
} | |
var paused = iframe.getElementById("ExercisePaused") != null; // bogus ID, must be replaced with something that actually is used in checkbox | |
if (paused) { |
diff --git a/app/assets/stylesheets/_shared.less b/app/assets/stylesheets/_shared.less | |
index e4480b2..453f35e 100644 | |
--- a/app/assets/stylesheets/_shared.less | |
+++ b/app/assets/stylesheets/_shared.less | |
@@ -1,3 +1,35 @@ | |
+@import "twitter/bootstrap/bootstrap"; | |
+@import "twitter/bootstrap/responsive"; | |
+ | |
+@font-face { | |
+ font-family: "Neo Sans"; |
define([ | |
"src/graphite/graph", | |
"src/graphite/dictionary", | |
"src/graphite/query", | |
"src/graphite/utils", | |
"src/graphite/when" | |
], function (Graph, Dictionary, Query, Utils, When) { | |
buster.testCase("Graphite graph", { | |
... | |
"Function .size": function (done) { |
/*global graphite*/ | |
(function (graphite, loader, proxy) { | |
"use strict"; | |
var xhr = function (options) { | |
this.options = graphite.extend({ | |
"asynchronous": true, | |
"method": "GET", | |
"uri": window.location | |
}, options); | |
this.req = new XMLHttpRequest(); |
var testable = function(arg) { | |
if(!arg) { | |
throw new Error("Input not valid"); | |
} | |
return arg; | |
}; | |
buster.testCase("Buster.JS Exception no work", { | |
"testable can be called": function() { | |
assert.defined(testable); |