json-object-editor 0.9.901 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -0
- package/app.js +5 -4
- package/css/jif/Read Me.txt +5 -5
- package/css/jif/demo-files/demo.css +153 -153
- package/css/jif/demo-files/demo.js +30 -30
- package/css/jif/demo.html +285 -285
- package/css/jif/fonts/joeiconfont.svg +24 -24
- package/css/jif/ie7/ie7.css +45 -45
- package/css/jif/ie7/ie7.js +46 -46
- package/css/jif/selection.json +573 -573
- package/css/joe.css +6 -6
- package/css/jquery-ui-1.10.4.custom.min.css +5 -5
- package/css/jquery-ui.min.css +6 -6
- package/css/jquery.timepicker.css +72 -72
- package/es5-build/capp/capp.js +1083 -1083
- package/es5-build/js/JsonObjectEditor_es5.jquery.craydent.js +11047 -11047
- package/es5-build/web-components/account-info.js +136 -136
- package/es5-build/web-components/capp-components.js +160 -160
- package/es5-build/web-components/capp-panel.js +85 -85
- package/es5-build/web-components/capp-view.js +73 -73
- package/es5-build/web-components/joe-autocomplete.js +149 -149
- package/es5-build/web-components/joe-button.js +132 -132
- package/es5-build/web-components/joe-card.js +92 -92
- package/es5-build/web-components/joe-component.js +74 -74
- package/es5-build/web-components/joe-field.js +70 -70
- package/es5-build/web-components/joe-list-item.js +176 -176
- package/es5-build/web-components/joe-user-cube.js +100 -100
- package/es5-build/web-components/report-components.js +133 -133
- package/grunt/build +86 -86
- package/grunt/package-lock.json +6301 -2489
- package/grunt/package.json +47 -47
- package/grunt/src +86 -86
- package/js/JsonObjectEditor.jquery.craydent.js +3 -2
- package/js/joe-full.js +11 -10
- package/js/joe.js +12 -11
- package/js/joe_es5.js +11056 -11056
- package/js/jquery.timepicker.min.js +1 -1
- package/js/leaflet.js +8 -8
- package/js/libs/adapter-latest.js +4400 -4400
- package/js/libs/craydent-1.9.2.js +11741 -11741
- package/js/libs/craydent-upload-2.0.0.js +394 -394
- package/js/libs/hammer.min.208.js +6 -6
- package/js/libs/jquery-3.5.1.min.js +2 -2
- package/js/libs/moment.min.js +6 -6
- package/js/native-shim.js +46 -46
- package/js/plugins/c3/c3.min.js +5 -5
- package/js/plugins/c3/d3.v3.min.js +4 -4
- package/js/plugins/threejs/Detector.js +78 -78
- package/js/plugins/threejs/LICENSE +21 -21
- package/js/plugins/threejs/MTLLoader.js +417 -417
- package/js/plugins/threejs/OBJLoader.js +564 -564
- package/js/plugins/threejs/OrbitControls.js +1037 -1037
- package/js/plugins/threejs/README.md +9 -9
- package/js/plugins/threejs/assets/female-croupier-2013-03-26.mtl +3 -3
- package/js/plugins/threejs/index.html +178 -178
- package/js/plugins/threejs/three.js +41507 -41507
- package/package copy.json +62 -0
- package/package.json +12 -13
- package/projectFilesBackup/.idea/workspace.xml +0 -424
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "json-object-editor",
|
|
3
|
+
"version": "0.9.901",
|
|
4
|
+
"description": "JOE the Json Object Editor | Platform Edition",
|
|
5
|
+
"main": "app.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"prestart": "start grunt --gruntfile grunt/Gruntfile.js",
|
|
8
|
+
"start": "node app.js ",
|
|
9
|
+
"stop": "node node_scripts/stop.js .pid",
|
|
10
|
+
"grunt": "start grunt --gruntfile grunt/Gruntfile.js",
|
|
11
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
|
+
"babel-wc": "babel web-components -d es5-build/web-components",
|
|
13
|
+
"babel-joe": "babel js/JsonObjectEditor.jquery.craydent.js -d es5-build/js/JsonObjectEditor_es5.jquery.craydent.js"
|
|
14
|
+
},
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://craql@bitbucket.org/craydent/jsonobjecteditor.git"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"joe",
|
|
21
|
+
"json",
|
|
22
|
+
"editor"
|
|
23
|
+
],
|
|
24
|
+
"author": "Corey Hadden",
|
|
25
|
+
"license": "(c) Copyright 2015-2020 corey hadden, all rights reserved",
|
|
26
|
+
"bugs": {
|
|
27
|
+
"url": "https://github.com/craql/JsonObjectEditor/issues"
|
|
28
|
+
},
|
|
29
|
+
"homepage": "http://craydent.com/JsonObjectEditor/docs.html",
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@babel/cli": "^7.7.4",
|
|
32
|
+
"@babel/core": "^7.7.4",
|
|
33
|
+
"@babel/preset-env": "^7.7.4",
|
|
34
|
+
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
|
|
35
|
+
"del": "^2.0.1",
|
|
36
|
+
"grunt-traceur": "^0.5.5",
|
|
37
|
+
"gulp": "^3.9.0",
|
|
38
|
+
"gulp-concat": "^2.6.0",
|
|
39
|
+
"gulp-notify": "^2.2.0"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"JsonObjectEditor": "file:grunt",
|
|
43
|
+
"aws-sdk": "^2.358.0",
|
|
44
|
+
"basic-auth": "^1.0.3",
|
|
45
|
+
"body-parser": "^1.18.3",
|
|
46
|
+
"compression": "^1.7.3",
|
|
47
|
+
"cookie-parser": "^1.4.1",
|
|
48
|
+
"craydent": "^0.8.9",
|
|
49
|
+
"express": "^4.16.4",
|
|
50
|
+
"jwt-decode": "^2.2.0",
|
|
51
|
+
"mailgun": "^0.5.0",
|
|
52
|
+
"mongojs": "^2.3.0",
|
|
53
|
+
"mysql": "^2.16.0",
|
|
54
|
+
"nodemailer": "^2.7.2",
|
|
55
|
+
"nodemailer-ses-transport": "^1.4.0",
|
|
56
|
+
"opener": "^1.4.3",
|
|
57
|
+
"pem": "^1.13.2",
|
|
58
|
+
"plaid": "^3.1.1",
|
|
59
|
+
"renderizer": "^1.1.0",
|
|
60
|
+
"socket.io": "^2.2.0"
|
|
61
|
+
}
|
|
62
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "json-object-editor",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.000",
|
|
4
4
|
"description": "JOE the Json Object Editor | Platform Edition",
|
|
5
5
|
"main": "app.js",
|
|
6
6
|
"scripts": {
|
|
@@ -27,19 +27,7 @@
|
|
|
27
27
|
"url": "https://github.com/craql/JsonObjectEditor/issues"
|
|
28
28
|
},
|
|
29
29
|
"homepage": "http://craydent.com/JsonObjectEditor/docs.html",
|
|
30
|
-
"devDependencies": {
|
|
31
|
-
"@babel/cli": "^7.7.4",
|
|
32
|
-
"@babel/core": "^7.7.4",
|
|
33
|
-
"@babel/preset-env": "^7.7.4",
|
|
34
|
-
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
|
|
35
|
-
"del": "^2.0.1",
|
|
36
|
-
"grunt-traceur": "^0.5.5",
|
|
37
|
-
"gulp": "^3.9.0",
|
|
38
|
-
"gulp-concat": "^2.6.0",
|
|
39
|
-
"gulp-notify": "^2.2.0"
|
|
40
|
-
},
|
|
41
30
|
"dependencies": {
|
|
42
|
-
"JsonObjectEditor": "file:grunt",
|
|
43
31
|
"aws-sdk": "^2.358.0",
|
|
44
32
|
"basic-auth": "^1.0.3",
|
|
45
33
|
"body-parser": "^1.18.3",
|
|
@@ -58,5 +46,16 @@
|
|
|
58
46
|
"plaid": "^3.1.1",
|
|
59
47
|
"renderizer": "^1.1.0",
|
|
60
48
|
"socket.io": "^2.2.0"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@babel/cli": "^7.7.4",
|
|
52
|
+
"@babel/core": "^7.7.4",
|
|
53
|
+
"@babel/preset-env": "^7.7.4",
|
|
54
|
+
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
|
|
55
|
+
"del": "^2.0.1",
|
|
56
|
+
"grunt-traceur": "^0.5.5",
|
|
57
|
+
"gulp": "^3.9.0",
|
|
58
|
+
"gulp-concat": "^2.6.0",
|
|
59
|
+
"gulp-notify": "^2.2.0"
|
|
61
60
|
}
|
|
62
61
|
}
|
|
@@ -1,424 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="ChangeListManager">
|
|
4
|
-
<list default="true" id="260ddeaa-eede-4a88-bfbe-bc6b5066a6cf" name="Default" comment="">
|
|
5
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/js/JsonObjectEditor.jquery.craydent.js" afterPath="$PROJECT_DIR$/js/JsonObjectEditor.jquery.craydent.js" />
|
|
6
|
-
</list>
|
|
7
|
-
<ignored path="JsonObjectEditor.iws" />
|
|
8
|
-
<ignored path=".idea/workspace.xml" />
|
|
9
|
-
<option name="TRACKING_ENABLED" value="true" />
|
|
10
|
-
<option name="SHOW_DIALOG" value="false" />
|
|
11
|
-
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
12
|
-
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
13
|
-
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
14
|
-
</component>
|
|
15
|
-
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
|
16
|
-
<component name="CreatePatchCommitExecutor">
|
|
17
|
-
<option name="PATCH_PATH" value="" />
|
|
18
|
-
</component>
|
|
19
|
-
<component name="DaemonCodeAnalyzer">
|
|
20
|
-
<disable_hints />
|
|
21
|
-
</component>
|
|
22
|
-
<component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
|
|
23
|
-
<component name="FavoritesManager">
|
|
24
|
-
<favorites_list name="JsonObjectEditor" />
|
|
25
|
-
</component>
|
|
26
|
-
<component name="FileEditorManager">
|
|
27
|
-
<leaf>
|
|
28
|
-
<file leaf-file-name="JsonObjectEditor.jquery.craydent.js" pinned="false" current="true" current-in-tab="true">
|
|
29
|
-
<entry file="file://$PROJECT_DIR$/js/JsonObjectEditor.jquery.craydent.js">
|
|
30
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
31
|
-
<state vertical-scroll-proportion="0.5197802" vertical-offset="8809" max-vertical-offset="45662">
|
|
32
|
-
<caret line="551" column="10" selection-start-line="551" selection-start-column="10" selection-end-line="551" selection-end-column="10" />
|
|
33
|
-
<folding>
|
|
34
|
-
<marker date="1422348946458" expanded="true" signature="45774:45784" placeholder="..." />
|
|
35
|
-
<marker date="1422348946458" expanded="true" signature="45970:45980" placeholder="..." />
|
|
36
|
-
</folding>
|
|
37
|
-
</state>
|
|
38
|
-
</provider>
|
|
39
|
-
</entry>
|
|
40
|
-
</file>
|
|
41
|
-
<file leaf-file-name="_joeinclude.js" pinned="false" current="false" current-in-tab="false">
|
|
42
|
-
<entry file="file://$PROJECT_DIR$/_joeinclude.js">
|
|
43
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
44
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="608" max-vertical-offset="1547">
|
|
45
|
-
<caret line="44" column="4" selection-start-line="44" selection-start-column="4" selection-end-line="44" selection-end-column="4" />
|
|
46
|
-
<folding />
|
|
47
|
-
</state>
|
|
48
|
-
</provider>
|
|
49
|
-
</entry>
|
|
50
|
-
</file>
|
|
51
|
-
<file leaf-file-name="index.html" pinned="false" current="false" current-in-tab="false">
|
|
52
|
-
<entry file="file://$PROJECT_DIR$/index.html">
|
|
53
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
54
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="2661" max-vertical-offset="4488">
|
|
55
|
-
<caret line="169" column="19" selection-start-line="169" selection-start-column="19" selection-end-line="169" selection-end-column="19" />
|
|
56
|
-
<folding />
|
|
57
|
-
</state>
|
|
58
|
-
</provider>
|
|
59
|
-
</entry>
|
|
60
|
-
</file>
|
|
61
|
-
<file leaf-file-name="readme.md" pinned="false" current="false" current-in-tab="false">
|
|
62
|
-
<entry file="file://$PROJECT_DIR$/readme.md">
|
|
63
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
64
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="153" max-vertical-offset="4318">
|
|
65
|
-
<caret line="9" column="10" selection-start-line="9" selection-start-column="10" selection-end-line="12" selection-end-column="86" />
|
|
66
|
-
<folding />
|
|
67
|
-
</state>
|
|
68
|
-
</provider>
|
|
69
|
-
<provider editor-type-id="MarkdownPreviewEditor">
|
|
70
|
-
<state />
|
|
71
|
-
</provider>
|
|
72
|
-
</entry>
|
|
73
|
-
</file>
|
|
74
|
-
<file leaf-file-name="_joenodeinclude.js" pinned="false" current="false" current-in-tab="false">
|
|
75
|
-
<entry file="file://$PROJECT_DIR$/_joenodeinclude.js">
|
|
76
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
77
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="969">
|
|
78
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
79
|
-
<folding />
|
|
80
|
-
</state>
|
|
81
|
-
</provider>
|
|
82
|
-
</entry>
|
|
83
|
-
</file>
|
|
84
|
-
</leaf>
|
|
85
|
-
</component>
|
|
86
|
-
<component name="FindManager">
|
|
87
|
-
<FindUsagesManager>
|
|
88
|
-
<setting name="OPEN_NEW_TAB" value="true" />
|
|
89
|
-
</FindUsagesManager>
|
|
90
|
-
</component>
|
|
91
|
-
<component name="Git.Settings">
|
|
92
|
-
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
93
|
-
</component>
|
|
94
|
-
<component name="IdeDocumentHistory">
|
|
95
|
-
<option name="changedFiles">
|
|
96
|
-
<list>
|
|
97
|
-
<option value="$PROJECT_DIR$/index.html" />
|
|
98
|
-
<option value="$PROJECT_DIR$/readme.md" />
|
|
99
|
-
<option value="$PROJECT_DIR$/js/JsonObjectEditor.jquery.craydent.js" />
|
|
100
|
-
</list>
|
|
101
|
-
</option>
|
|
102
|
-
</component>
|
|
103
|
-
<component name="ProjectFrameBounds">
|
|
104
|
-
<option name="x" value="1735" />
|
|
105
|
-
<option name="y" value="159" />
|
|
106
|
-
<option name="width" value="1936" />
|
|
107
|
-
<option name="height" value="1092" />
|
|
108
|
-
</component>
|
|
109
|
-
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
|
110
|
-
<OptionsSetting value="true" id="Add" />
|
|
111
|
-
<OptionsSetting value="true" id="Remove" />
|
|
112
|
-
<OptionsSetting value="true" id="Checkout" />
|
|
113
|
-
<OptionsSetting value="true" id="Update" />
|
|
114
|
-
<OptionsSetting value="true" id="Status" />
|
|
115
|
-
<OptionsSetting value="true" id="Edit" />
|
|
116
|
-
<ConfirmationsSetting value="0" id="Add" />
|
|
117
|
-
<ConfirmationsSetting value="0" id="Remove" />
|
|
118
|
-
</component>
|
|
119
|
-
<component name="ProjectReloadState">
|
|
120
|
-
<option name="STATE" value="0" />
|
|
121
|
-
</component>
|
|
122
|
-
<component name="ProjectView">
|
|
123
|
-
<navigator currentView="ProjectPane" proportions="" version="1">
|
|
124
|
-
<flattenPackages />
|
|
125
|
-
<showMembers />
|
|
126
|
-
<showModules />
|
|
127
|
-
<showLibraryContents />
|
|
128
|
-
<hideEmptyPackages />
|
|
129
|
-
<abbreviatePackageNames />
|
|
130
|
-
<autoscrollToSource />
|
|
131
|
-
<autoscrollFromSource />
|
|
132
|
-
<sortByType />
|
|
133
|
-
</navigator>
|
|
134
|
-
<panes>
|
|
135
|
-
<pane id="Scope" />
|
|
136
|
-
<pane id="ProjectPane">
|
|
137
|
-
<subPane>
|
|
138
|
-
<PATH>
|
|
139
|
-
<PATH_ELEMENT>
|
|
140
|
-
<option name="myItemId" value="JsonObjectEditor" />
|
|
141
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
142
|
-
</PATH_ELEMENT>
|
|
143
|
-
</PATH>
|
|
144
|
-
<PATH>
|
|
145
|
-
<PATH_ELEMENT>
|
|
146
|
-
<option name="myItemId" value="JsonObjectEditor" />
|
|
147
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
148
|
-
</PATH_ELEMENT>
|
|
149
|
-
<PATH_ELEMENT>
|
|
150
|
-
<option name="myItemId" value="JsonObjectEditor" />
|
|
151
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
152
|
-
</PATH_ELEMENT>
|
|
153
|
-
</PATH>
|
|
154
|
-
<PATH>
|
|
155
|
-
<PATH_ELEMENT>
|
|
156
|
-
<option name="myItemId" value="JsonObjectEditor" />
|
|
157
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
158
|
-
</PATH_ELEMENT>
|
|
159
|
-
<PATH_ELEMENT>
|
|
160
|
-
<option name="myItemId" value="JsonObjectEditor" />
|
|
161
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
162
|
-
</PATH_ELEMENT>
|
|
163
|
-
<PATH_ELEMENT>
|
|
164
|
-
<option name="myItemId" value="js" />
|
|
165
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
166
|
-
</PATH_ELEMENT>
|
|
167
|
-
</PATH>
|
|
168
|
-
</subPane>
|
|
169
|
-
</pane>
|
|
170
|
-
</panes>
|
|
171
|
-
</component>
|
|
172
|
-
<component name="PropertiesComponent">
|
|
173
|
-
<property name="last_opened_file_path" value="$PROJECT_DIR$/../NAMS" />
|
|
174
|
-
<property name="WebServerToolWindowFactoryState" value="false" />
|
|
175
|
-
<property name="FullScreen" value="false" />
|
|
176
|
-
</component>
|
|
177
|
-
<component name="RunManager">
|
|
178
|
-
<configuration default="true" type="DartUnitRunConfigurationType" factoryName="DartUnit">
|
|
179
|
-
<option name="VMOptions" />
|
|
180
|
-
<option name="arguments" />
|
|
181
|
-
<option name="filePath" />
|
|
182
|
-
<option name="scope" value="ALL" />
|
|
183
|
-
<option name="testName" />
|
|
184
|
-
<method />
|
|
185
|
-
</configuration>
|
|
186
|
-
<configuration default="true" type="DartCommandLineRunConfigurationType" factoryName="Dart Command Line Application">
|
|
187
|
-
<option name="VMOptions" />
|
|
188
|
-
<option name="arguments" />
|
|
189
|
-
<option name="filePath" />
|
|
190
|
-
<option name="name" value="Dart" />
|
|
191
|
-
<option name="saveOutputToFile" value="false" />
|
|
192
|
-
<option name="showConsoleOnStdErr" value="false" />
|
|
193
|
-
<option name="showConsoleOnStdOut" value="false" />
|
|
194
|
-
<method />
|
|
195
|
-
</configuration>
|
|
196
|
-
<configuration default="true" type="CucumberJavaScriptRunConfigurationType" factoryName="Cucumber.js">
|
|
197
|
-
<option name="cucumberJsArguments" />
|
|
198
|
-
<option name="executablePath" />
|
|
199
|
-
<option name="filePath" />
|
|
200
|
-
<method />
|
|
201
|
-
</configuration>
|
|
202
|
-
<configuration default="true" type="JavaScriptTestRunnerKarma" factoryName="Karma" config-file="">
|
|
203
|
-
<envs />
|
|
204
|
-
<method />
|
|
205
|
-
</configuration>
|
|
206
|
-
<configuration default="true" type="JSTestDriver:ConfigurationType" factoryName="JsTestDriver">
|
|
207
|
-
<setting name="configLocationType" value="CONFIG_FILE" />
|
|
208
|
-
<setting name="settingsFile" value="" />
|
|
209
|
-
<setting name="serverType" value="INTERNAL" />
|
|
210
|
-
<setting name="preferredDebugBrowser" value="Chrome" />
|
|
211
|
-
<method />
|
|
212
|
-
</configuration>
|
|
213
|
-
<configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug">
|
|
214
|
-
<method />
|
|
215
|
-
</configuration>
|
|
216
|
-
<configuration default="true" type="NodeJSConfigurationType" factoryName="Node.js" working-dir="">
|
|
217
|
-
<method />
|
|
218
|
-
</configuration>
|
|
219
|
-
<list size="0" />
|
|
220
|
-
</component>
|
|
221
|
-
<component name="ShelveChangesManager" show_recycled="false" />
|
|
222
|
-
<component name="SvnConfiguration">
|
|
223
|
-
<configuration />
|
|
224
|
-
</component>
|
|
225
|
-
<component name="TaskManager">
|
|
226
|
-
<task active="true" id="Default" summary="Default task">
|
|
227
|
-
<changelist id="260ddeaa-eede-4a88-bfbe-bc6b5066a6cf" name="Default" comment="" />
|
|
228
|
-
<created>1414480939476</created>
|
|
229
|
-
<updated>1414480939476</updated>
|
|
230
|
-
</task>
|
|
231
|
-
<task id="LOCAL-00001" summary="+Added dynamicDisplay specs. (default:30) this allows for infinite scroll of big lists. Set how many items to load on initial draw. Changed search in accordance to use list not dom elements. Not updates _listCount property in title after searching. onUpdate and onMultipleUpdate added to schema for callbacks to these functions/buttons">
|
|
232
|
-
<created>1417682814084</created>
|
|
233
|
-
<updated>1417682814084</updated>
|
|
234
|
-
</task>
|
|
235
|
-
<option name="localTasksCounter" value="2" />
|
|
236
|
-
<servers />
|
|
237
|
-
</component>
|
|
238
|
-
<component name="ToolWindowManager">
|
|
239
|
-
<frame x="1735" y="159" width="1936" height="1092" extended-state="0" />
|
|
240
|
-
<editor active="true" />
|
|
241
|
-
<layout>
|
|
242
|
-
<window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3289941" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
|
243
|
-
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
|
244
|
-
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
|
245
|
-
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
|
246
|
-
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.19589257" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
|
|
247
|
-
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
|
248
|
-
<window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="true" content_ui="tabs" />
|
|
249
|
-
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="true" content_ui="tabs" />
|
|
250
|
-
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
|
251
|
-
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3289941" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
|
252
|
-
<window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
|
|
253
|
-
<window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
|
254
|
-
<window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
|
255
|
-
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
|
256
|
-
<window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
|
257
|
-
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="SLIDING" type="SLIDING" visible="false" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
|
258
|
-
<window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
|
|
259
|
-
<window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
|
|
260
|
-
</layout>
|
|
261
|
-
</component>
|
|
262
|
-
<component name="Vcs.Log.UiProperties">
|
|
263
|
-
<option name="RECENTLY_FILTERED_USER_GROUPS">
|
|
264
|
-
<collection />
|
|
265
|
-
</option>
|
|
266
|
-
<option name="RECENTLY_FILTERED_BRANCH_GROUPS">
|
|
267
|
-
<collection />
|
|
268
|
-
</option>
|
|
269
|
-
</component>
|
|
270
|
-
<component name="VcsContentAnnotationSettings">
|
|
271
|
-
<option name="myLimit" value="2678400000" />
|
|
272
|
-
</component>
|
|
273
|
-
<component name="VcsManagerConfiguration">
|
|
274
|
-
<option name="myTodoPanelSettings">
|
|
275
|
-
<TodoPanelSettings />
|
|
276
|
-
</option>
|
|
277
|
-
<MESSAGE value="+Added dynamicDisplay specs. (default:30) this allows for infinite scroll of big lists. Set how many items to load on initial draw. Changed search in accordance to use list not dom elements. Not updates _listCount property in title after searching. onUpdate and onMultipleUpdate added to schema for callbacks to these functions/buttons" />
|
|
278
|
-
<option name="LAST_COMMIT_MESSAGE" value="+Added dynamicDisplay specs. (default:30) this allows for infinite scroll of big lists. Set how many items to load on initial draw. Changed search in accordance to use list not dom elements. Not updates _listCount property in title after searching. onUpdate and onMultipleUpdate added to schema for callbacks to these functions/buttons" />
|
|
279
|
-
</component>
|
|
280
|
-
<component name="XDebuggerManager">
|
|
281
|
-
<breakpoint-manager />
|
|
282
|
-
</component>
|
|
283
|
-
<component name="editorHistoryManager">
|
|
284
|
-
<entry file="file://$PROJECT_DIR$/js/JsonObjectEditor.jquery.craydent.js">
|
|
285
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
286
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="12260" max-vertical-offset="42126">
|
|
287
|
-
<caret line="744" column="10" selection-start-line="744" selection-start-column="10" selection-end-line="744" selection-end-column="10" />
|
|
288
|
-
<folding>
|
|
289
|
-
<marker date="1422348946458" expanded="true" signature="45774:45784" placeholder="..." />
|
|
290
|
-
<marker date="1422348946458" expanded="true" signature="45970:45980" placeholder="..." />
|
|
291
|
-
</folding>
|
|
292
|
-
</state>
|
|
293
|
-
</provider>
|
|
294
|
-
</entry>
|
|
295
|
-
<entry file="file://$PROJECT_DIR$/_joeinclude.js">
|
|
296
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
297
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="489" max-vertical-offset="1428">
|
|
298
|
-
<caret line="37" column="34" selection-start-line="37" selection-start-column="34" selection-end-line="37" selection-end-column="34" />
|
|
299
|
-
<folding />
|
|
300
|
-
</state>
|
|
301
|
-
</provider>
|
|
302
|
-
</entry>
|
|
303
|
-
<entry file="file://$PROJECT_DIR$/index.html">
|
|
304
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
305
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="2661" max-vertical-offset="4488">
|
|
306
|
-
<caret line="169" column="19" selection-start-line="169" selection-start-column="19" selection-end-line="169" selection-end-column="19" />
|
|
307
|
-
<folding />
|
|
308
|
-
</state>
|
|
309
|
-
</provider>
|
|
310
|
-
</entry>
|
|
311
|
-
<entry file="file://$PROJECT_DIR$/readme.md">
|
|
312
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
313
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="153" max-vertical-offset="4318">
|
|
314
|
-
<caret line="9" column="10" selection-start-line="9" selection-start-column="10" selection-end-line="12" selection-end-column="86" />
|
|
315
|
-
<folding />
|
|
316
|
-
</state>
|
|
317
|
-
</provider>
|
|
318
|
-
<provider editor-type-id="MarkdownPreviewEditor">
|
|
319
|
-
<state />
|
|
320
|
-
</provider>
|
|
321
|
-
</entry>
|
|
322
|
-
<entry file="file://$PROJECT_DIR$/_joenodeinclude.js">
|
|
323
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
324
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="969">
|
|
325
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
326
|
-
<folding />
|
|
327
|
-
</state>
|
|
328
|
-
</provider>
|
|
329
|
-
</entry>
|
|
330
|
-
<entry file="file://$PROJECT_DIR$/js/JsonObjectEditor.jquery.craydent.js">
|
|
331
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
332
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="41973">
|
|
333
|
-
<caret line="50" column="22" selection-start-line="50" selection-start-column="8" selection-end-line="50" selection-end-column="22" />
|
|
334
|
-
<folding>
|
|
335
|
-
<marker date="1422348946458" expanded="true" signature="45774:45784" placeholder="..." />
|
|
336
|
-
<marker date="1422348946458" expanded="true" signature="45970:45980" placeholder="..." />
|
|
337
|
-
</folding>
|
|
338
|
-
</state>
|
|
339
|
-
</provider>
|
|
340
|
-
</entry>
|
|
341
|
-
<entry file="file://$PROJECT_DIR$/_joeinclude.js">
|
|
342
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
343
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="489" max-vertical-offset="1428">
|
|
344
|
-
<caret line="37" column="34" selection-start-line="37" selection-start-column="34" selection-end-line="37" selection-end-column="34" />
|
|
345
|
-
<folding />
|
|
346
|
-
</state>
|
|
347
|
-
</provider>
|
|
348
|
-
</entry>
|
|
349
|
-
<entry file="file://$PROJECT_DIR$/index.html">
|
|
350
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
351
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="3383" max-vertical-offset="4488">
|
|
352
|
-
<caret line="199" column="62" selection-start-line="199" selection-start-column="62" selection-end-line="199" selection-end-column="62" />
|
|
353
|
-
<folding />
|
|
354
|
-
</state>
|
|
355
|
-
</provider>
|
|
356
|
-
</entry>
|
|
357
|
-
<entry file="file://$PROJECT_DIR$/readme.md">
|
|
358
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
359
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="136" max-vertical-offset="4284">
|
|
360
|
-
<caret line="8" column="12" selection-start-line="7" selection-start-column="0" selection-end-line="8" selection-end-column="12" />
|
|
361
|
-
<folding />
|
|
362
|
-
</state>
|
|
363
|
-
</provider>
|
|
364
|
-
<provider editor-type-id="MarkdownPreviewEditor">
|
|
365
|
-
<state />
|
|
366
|
-
</provider>
|
|
367
|
-
</entry>
|
|
368
|
-
<entry file="file://$PROJECT_DIR$/_joenodeinclude.js">
|
|
369
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
370
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="969">
|
|
371
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
372
|
-
<folding />
|
|
373
|
-
</state>
|
|
374
|
-
</provider>
|
|
375
|
-
</entry>
|
|
376
|
-
<entry file="file://$PROJECT_DIR$/_joeinclude.js">
|
|
377
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
378
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="608" max-vertical-offset="1547">
|
|
379
|
-
<caret line="44" column="4" selection-start-line="44" selection-start-column="4" selection-end-line="44" selection-end-column="4" />
|
|
380
|
-
<folding />
|
|
381
|
-
</state>
|
|
382
|
-
</provider>
|
|
383
|
-
</entry>
|
|
384
|
-
<entry file="file://$PROJECT_DIR$/index.html">
|
|
385
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
386
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="2661" max-vertical-offset="4488">
|
|
387
|
-
<caret line="169" column="19" selection-start-line="169" selection-start-column="19" selection-end-line="169" selection-end-column="19" />
|
|
388
|
-
<folding />
|
|
389
|
-
</state>
|
|
390
|
-
</provider>
|
|
391
|
-
</entry>
|
|
392
|
-
<entry file="file://$PROJECT_DIR$/_joenodeinclude.js">
|
|
393
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
394
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="969">
|
|
395
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
396
|
-
<folding />
|
|
397
|
-
</state>
|
|
398
|
-
</provider>
|
|
399
|
-
</entry>
|
|
400
|
-
<entry file="file://$PROJECT_DIR$/readme.md">
|
|
401
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
402
|
-
<state vertical-scroll-proportion="0.0" vertical-offset="153" max-vertical-offset="4318">
|
|
403
|
-
<caret line="9" column="10" selection-start-line="9" selection-start-column="10" selection-end-line="12" selection-end-column="86" />
|
|
404
|
-
<folding />
|
|
405
|
-
</state>
|
|
406
|
-
</provider>
|
|
407
|
-
<provider editor-type-id="MarkdownPreviewEditor">
|
|
408
|
-
<state />
|
|
409
|
-
</provider>
|
|
410
|
-
</entry>
|
|
411
|
-
<entry file="file://$PROJECT_DIR$/js/JsonObjectEditor.jquery.craydent.js">
|
|
412
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
413
|
-
<state vertical-scroll-proportion="0.5197802" vertical-offset="8809" max-vertical-offset="45662">
|
|
414
|
-
<caret line="551" column="10" selection-start-line="551" selection-start-column="10" selection-end-line="551" selection-end-column="10" />
|
|
415
|
-
<folding>
|
|
416
|
-
<marker date="1422348946458" expanded="true" signature="45774:45784" placeholder="..." />
|
|
417
|
-
<marker date="1422348946458" expanded="true" signature="45970:45980" placeholder="..." />
|
|
418
|
-
</folding>
|
|
419
|
-
</state>
|
|
420
|
-
</provider>
|
|
421
|
-
</entry>
|
|
422
|
-
</component>
|
|
423
|
-
</project>
|
|
424
|
-
|