-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
179 additions
and
163 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
js/main.9dd13969afaf44b43772.js → js/main.c56faf33e0e1e68ce859.js
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<script type="text/html" id="node-template"> | ||
|
||
<div class="node" data-bind="nodeBind: true, style: { left: node.x() + 'px', top: node.y() + 'px' }"> | ||
<div class="title" data-bind="text: node.title"></div> | ||
<div class="body" data-bind="html: node.clippedBody"></div> | ||
<div class="tags" data-bind="html: node.clippedTags"></div> | ||
<div class="icon edit" data-bind="click: function() { app.editNode(node); }"></div> | ||
<div class="icon delete" data-bind="click:node.remove"></div> | ||
</div> | ||
|
||
<script type="text/html" id="node-template"> | ||
|
||
<div class="node" data-bind="nodeBind: true, style: { left: node.x() + 'px', top: node.y() + 'px' }"> | ||
<div class="title" data-bind="text: node.title"></div> | ||
<div class="body" data-bind="html: node.clippedBody"></div> | ||
<div class="tags" data-bind="html: node.clippedTags"></div> | ||
<div class="icon edit" data-bind="click: function() { app.editNode(node); }"></div> | ||
<div class="icon delete" data-bind="click:node.remove"></div> | ||
</div> | ||
|
||
</script> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,88 +1,88 @@ | ||
define("ace/theme/yarn",["require","exports","module","ace/lib/dom"], function(require, exports, module) { | ||
|
||
exports.isDark = false; | ||
exports.cssClass = "ace-yarn"; | ||
exports.cssText = "\ | ||
.ace-yarn .ace_gutter {\ | ||
background: #e8e8e8;\ | ||
color: #AAA;\ | ||
}\ | ||
.ace-yarn {\ | ||
background: #fff;\ | ||
color: #000;\ | ||
}\ | ||
.ace-yarn .ace_comment {\ | ||
color: #00c171;\ | ||
font-style: italic;\ | ||
}\ | ||
.ace-yarn .ace_variable.ace_language {\ | ||
color: #0086B3;\ | ||
}\ | ||
.ace-yarn .ace_paren {\ | ||
font-weight: bold;\ | ||
}\ | ||
.ace-yarn .ace_string.ace_llink {\ | ||
color: #000;\ | ||
}\ | ||
.ace-yarn .ace_string.ace_rlink {\ | ||
color: #3ecfe9;\ | ||
}\ | ||
.ace-yarn .ace_string.ace_comm {\ | ||
color: #e93ecf;\ | ||
}\ | ||
.ace-yarn .ace_paren.ace_lcomm, .ace-yarn .ace_paren.ace_rcomm {\ | ||
color: #e00ec0;\ | ||
}\ | ||
.ace-yarn .ace_paren.ace_llink, .ace-yarn .ace_paren.ace_rlink {\ | ||
color: #0ec0e0;\ | ||
}\ | ||
.ace-yarn .ace_variable.ace_instance {\ | ||
color: teal;\ | ||
}\ | ||
.ace-yarn .ace_constant.ace_language {\ | ||
font-weight: bold;\ | ||
}\ | ||
.ace-yarn .ace_cursor {\ | ||
color: black;\ | ||
}\ | ||
.ace-yarn .ace_marker-layer .ace_active-line {\ | ||
background: rgb(255, 255, 204);\ | ||
}\ | ||
.ace-yarn .ace_marker-layer .ace_selection {\ | ||
background: rgb(181, 213, 255);\ | ||
}\ | ||
.ace-yarn.ace_multiselect .ace_selection.ace_start {\ | ||
box-shadow: 0 0 3px 0px white;\ | ||
border-radius: 2px;\ | ||
}\ | ||
.ace-yarn.ace_nobold .ace_line > span {\ | ||
font-weight: normal !important;\ | ||
}\ | ||
.ace-yarn .ace_marker-layer .ace_step {\ | ||
background: rgb(252, 255, 0);\ | ||
}\ | ||
.ace-yarn .ace_marker-layer .ace_stack {\ | ||
background: rgb(164, 229, 101);\ | ||
}\ | ||
.ace-yarn .ace_marker-layer .ace_bracket {\ | ||
margin: -1px 0 0 -1px;\ | ||
border: 1px solid rgb(192, 192, 192);\ | ||
}\ | ||
.ace-yarn .ace_gutter-active-line {\ | ||
background-color : rgba(0, 0, 0, 0.07);\ | ||
}\ | ||
.ace-yarn .ace_marker-layer .ace_selected-word {\ | ||
background: rgb(250, 250, 255);\ | ||
border: 1px solid rgb(200, 200, 250);\ | ||
}\ | ||
.ace-yarn .ace_print-margin {\ | ||
width: 1px;\ | ||
background: #e8e8e8;\ | ||
}\ | ||
.ace-yarn .ace_indent-guide {\ | ||
background: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==\") right repeat-y;\ | ||
}"; | ||
|
||
var dom = require("../lib/dom"); | ||
dom.importCssString(exports.cssText, exports.cssClass); | ||
define("ace/theme/yarn",["require","exports","module","ace/lib/dom"], function(require, exports, module) { | ||
|
||
exports.isDark = false; | ||
exports.cssClass = "ace-yarn"; | ||
exports.cssText = "\ | ||
.ace-yarn .ace_gutter {\ | ||
background: #e8e8e8;\ | ||
color: #AAA;\ | ||
}\ | ||
.ace-yarn {\ | ||
background: #fff;\ | ||
color: #000;\ | ||
}\ | ||
.ace-yarn .ace_comment {\ | ||
color: #00c171;\ | ||
font-style: italic;\ | ||
}\ | ||
.ace-yarn .ace_variable.ace_language {\ | ||
color: #0086B3;\ | ||
}\ | ||
.ace-yarn .ace_paren {\ | ||
font-weight: bold;\ | ||
}\ | ||
.ace-yarn .ace_string.ace_llink {\ | ||
color: #000;\ | ||
}\ | ||
.ace-yarn .ace_string.ace_rlink {\ | ||
color: #3ecfe9;\ | ||
}\ | ||
.ace-yarn .ace_string.ace_comm {\ | ||
color: #e93ecf;\ | ||
}\ | ||
.ace-yarn .ace_paren.ace_lcomm, .ace-yarn .ace_paren.ace_rcomm {\ | ||
color: #e00ec0;\ | ||
}\ | ||
.ace-yarn .ace_paren.ace_llink, .ace-yarn .ace_paren.ace_rlink {\ | ||
color: #0ec0e0;\ | ||
}\ | ||
.ace-yarn .ace_variable.ace_instance {\ | ||
color: teal;\ | ||
}\ | ||
.ace-yarn .ace_constant.ace_language {\ | ||
font-weight: bold;\ | ||
}\ | ||
.ace-yarn .ace_cursor {\ | ||
color: black;\ | ||
}\ | ||
.ace-yarn .ace_marker-layer .ace_active-line {\ | ||
background: rgb(255, 255, 204);\ | ||
}\ | ||
.ace-yarn .ace_marker-layer .ace_selection {\ | ||
background: rgb(181, 213, 255);\ | ||
}\ | ||
.ace-yarn.ace_multiselect .ace_selection.ace_start {\ | ||
box-shadow: 0 0 3px 0px white;\ | ||
border-radius: 2px;\ | ||
}\ | ||
.ace-yarn.ace_nobold .ace_line > span {\ | ||
font-weight: normal !important;\ | ||
}\ | ||
.ace-yarn .ace_marker-layer .ace_step {\ | ||
background: rgb(252, 255, 0);\ | ||
}\ | ||
.ace-yarn .ace_marker-layer .ace_stack {\ | ||
background: rgb(164, 229, 101);\ | ||
}\ | ||
.ace-yarn .ace_marker-layer .ace_bracket {\ | ||
margin: -1px 0 0 -1px;\ | ||
border: 1px solid rgb(192, 192, 192);\ | ||
}\ | ||
.ace-yarn .ace_gutter-active-line {\ | ||
background-color : rgba(0, 0, 0, 0.07);\ | ||
}\ | ||
.ace-yarn .ace_marker-layer .ace_selected-word {\ | ||
background: rgb(250, 250, 255);\ | ||
border: 1px solid rgb(200, 200, 250);\ | ||
}\ | ||
.ace-yarn .ace_print-margin {\ | ||
width: 1px;\ | ||
background: #e8e8e8;\ | ||
}\ | ||
.ace-yarn .ace_indent-guide {\ | ||
background: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==\") right repeat-y;\ | ||
}"; | ||
|
||
var dom = require("../lib/dom"); | ||
dom.importCssString(exports.cssText, exports.cssClass); | ||
}); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"version": "0.4.282" | ||
"version": "0.4.283" | ||
} |