-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
1729 lines (1585 loc) · 117 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<!--
Copyright (c) 2013/4 Sauf Pompiers Ltd
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to permit persons
to whom the Software is furnished to do so, subject to the following conditions:
1. The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
2. The Software may not be used to offer a publicly accessible service that
replicates the core service, visual layout or experience of www.mindmup.com
3. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-->
<head>
<meta charset="utf-8">
<title>MindMup: Zero-Friction Free Online Mind Mapping Software - Mind Map in the cloud</title>
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1" />
<link rel="apple-touch-icon" href="static/img/apple-touch-icon.png" />
<meta name="keywords" content="mind mapping, mind map, mindmap, mindmapping, free online mindmapping, free online mind mapping, mindmup" />
<meta name="description" content="Mind Map in the cloud. Zero-friction, free online mind mapping. Opensource mindmapping software. The most productive online mind map canvas on the Web. Supports Freemind mindmap import/export." />
<link rel="shortcut icon" href="static/img/favicon.ico" >
<link href="static/pack_latest/external.css" rel="stylesheet" />
<link href="https://plus.google.com/u/0/communities/112831595986131146219" rel="publisher" />
<link href="compiled/combined.css" rel="stylesheet" />
<link href="http://blog.mindmup.com/feeds/posts/default" rel="alternate" type="application/rss+xml" title="RSS" />
<script src="chrome-app/timetrack.js"></script>
<link rel="stylesheet" href="chrome-app/app.css"/>
</head>
<body class="map-unchanged chrome_app chrome">
<div id="floating-toolbar" class="floating span-toolbar well well-small hidden-phone hidden-touch hidden-collapsed-toolbar">
<button class="close pull-right" data-category="Toolbar Click" data-mm-key="ctrl+b meta+b" data-event-type="Expand/Collapse" data-mm-target="body" data-mm-class='collapsed-toolbar' data-mm-role="toggle-class" data-title="Hide toolbar (Ctrl+b)" data-placement='left' rel='tooltip'><i class="toggle icon-remove"></i></button>
<div class="toolbar-inner">
<div class="btn-toolbar" id="toolbarEdit">
<div class="btn-group">
<button rel="tooltip" data-placement="bottom" data-title="Zoom in (z)" data-category="Toolbar Click" data-event-type="Zoom in" class="btn scaleUp"><i class="icon-zoom-in"></i></button>
<button rel="tooltip" data-placement="bottom" data-title="Zoom out (Shift+z)" data-category="Toolbar Click" data-event-type="Zoom out" class="btn scaleDown"><i class="icon-zoom-out"></i></button>
<button rel="tooltip" data-placement="bottom" data-title="Re-center view (Esc or 0)" data-category="Toolbar Click" data-event-type="Zoom reset" class="btn resetView"><i class="icon-circle-blank"></i></button>
</div>
<div class="btn-group">
<button rel="tooltip" data-placement="bottom" data-title="Select subtree ({)" data-category="Toolbar Click" data-event-type="Select subtree" class="btn activateNodeAndChildren"><i class="icon-sitemap"></i></button>
<button rel="tooltip" data-placement="bottom" data-title="Select all children ([)" data-category="Toolbar Click" data-event-type="Select all children" class="btn activateChildren"><i class="icon-th-list"></i></button>
<button rel="tooltip" data-placement="bottom" data-title="Select all siblings (=)" data-category="Toolbar Click" data-event-type="Select all siblings" class="btn activateSiblingNodes"><i class="icon-ellipsis-vertical"></i></button>
</div>
<div class="btn-group">
<button id="menuAdd" rel="tooltip" data-placement="bottom" data-title="Add child (Tab)" data-category="Toolbar Click" data-event-type="Add idea" class="btn addSubIdea"><i class="icon-signin" ></i></button>
<button id="menuInsertSibling" rel="tooltip" data-placement="bottom" data-title="Insert sibling (Enter)" data-category="Toolbar Click" data-event-type="Insert Sibling" class="btn addSiblingIdea"><i class="icon-signin icon-rotate-90" ></i></button>
<button id="menuInsertIntermediate" rel="tooltip" data-placement="bottom" data-title="Insert parent (Shift+Tab)" data-category="Toolbar Click" data-event-type="Insert Intermediate" class="btn insertIntermediate"><i class="icon-signin icon-rotate-180" ></i></button>
</div>
<div class="btn-group">
<button id="menuEdit" rel="tooltip" data-placement="bottom" data-title="Edit node (Spacebar)" data-category="Toolbar Click" data-event-type="Edit idea" class="btn editNode"><i class="icon-pencil"></i></button>
<button id="menuCollapse" rel="tooltip" data-placement="bottom" data-title="Expand/collapse node (/ or F)" data-category="Toolbar Click" data-event-type="Collapse idea" class="btn toggleCollapse"><i class="icon-leaf"></i></button>
<button id="menuDelete" rel="tooltip" data-placement="bottom" data-title="Delete node (Backspace)" data-category="Toolbar Click" data-event-type="Delete idea" class="btn removeSubIdea"><i class="icon-remove"></i></button>
</div>
<div class="btn-group">
<button rel="tooltip" data-placement="bottom" data-title="Copy (Ctrl+c)" data-category="Toolbar Click" data-event-type="Copy" class="btn copy"><i class="icon-copy"></i></button>
<button rel="tooltip" data-placement="bottom" data-title="Paste (Ctrl+v)" data-category="Toolbar Click" data-event-type="Paste" class="btn paste"><i class="icon-paste"></i></button>
<button rel="tooltip" data-placement="bottom" data-title="Cut (Ctrl+x)" data-category="Toolbar Click" data-event-type="Cut" class="btn cut"><i class="icon-cut"></i></button>
</div>
<div class="btn-group">
<button class="btn " rel="tooltip" data-title="Node color (Shift+Spacebar)" data-category="Toolbar Click" data-event-type="Node Color">
<input data-mm-target-property='background' class='updateStyle hide' type="hidden" value="" />
</button>
<button rel="tooltip" data-placement="bottom" data-title="Icon/Image (I)" data-category="Toolbar Click" data-event-type="Edit Icon" class="btn editIcon"><i class="icon-picture"></i></button>
<button rel="tooltip" data-placement="bottom" data-title="Connect (Alt+click)" data-category="Toolbar Click" data-event-type="Link" class="btn toggleAddLinkMode"><i class="toggle icon-resize-horizontal"></i></button>
</div>
<div class="btn-group">
<button rel="tooltip" data-placement="bottom" data-title="Attachment (A)" data-category="Toolbar Click" data-event-type="Open Attachment" class="btn openAttachment"><i class="icon-paper-clip"></i></button>
<button rel="tooltip" data-placement="bottom" data-title="Measurements (M)" data-category="Toolbar Click" data-event-type="Open Measurements" class="btn" data-mm-role="activatedNodesMeasureSheet"><i class="icon-table"></i></button>
<button rel="tooltip" data-placement="bottom" data-title="Storyboard (S)" data-category="Toolbar Click" data-event-type="Open Storyboard" class="btn" data-mm-role="storyboard-toggler"><i class="icon-film"></i></button>
</div>
</div>
<a class="pull-right small" data-title="Keyboard shortcuts" data-category="Toolbar Click" data-event-type="Keyboard shortcuts" target="_blank" href="http://discover.mindmup.com/keyboard-shortcuts">Hotkeys</a>
</div>
</div>
<div id='modalAbout' class='modal hide fade'>
<div class='modal-header'>
<button type='button' class='close' data-dismiss='modal' aria-hidden='true'>×</button>
<h3>MindMup: zero-friction mind mapping</h3>
</div>
<div class='modal-body'>
<p>MindMup is a free,
<a href="http://github.com/mindmup" target="_blank" data-category="About" data-event-type="(Intro) Source Code">opensource</a>, mindmapping canvas. Our aim is to build the most productive mind map system.</p>
<p>
To join the community, impact our roadmap and get notified about future changes,
<a target="_blank" href="http://facebook.com/mindmupapp" data-category="About" data-event-type="(Intro) Connect on FB">connect on Facebook</a>,
<a target="_blank" href="http://twitter.com/mindmup" data-category="About" data-event-type="(Intro) Connect on Twitter">follow on Twitter</a> or
<a target="_blank" href="https://plus.google.com/u/0/communities/112831595986131146219" data-category="About" data-event-type="(Intro) Connect on G+">join us on Google+</a>.
</p>
</div>
<div class='modal-footer'>
<a href='#' data-dismiss='modal' class='btn btn-primary'>Close</a>
</div>
</div>
<div id='modalImport' class='modal hide fade'>
<div class='modal-header'>
<button type='button' class='close' data-dismiss='modal' aria-hidden='true'>×</button>
<h3>Import a file</h3>
</div>
<div class='modal-body'>
<p>You can import a MindMup (.mup) or a FreeMind (.mm) file from your local computer. Just select the file using the button below.</p>
</div>
<div class='modal-footer'>
<div class="pull-left" data-mm-role="status"></div>
<button data-mm-role='select-file' class='btn btn-primary btn-file'>Select File</button>
<input type="file" name="file" />
</div>
</div>
<div id="modalTerms" class="modal hide fade">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3>Terms & Conditions</h3>
</div>
<div class="modal-body">
<p>Software copyright © 2013-2015 Sauf Pompiers Ltd. (For Software License terms, <a href="https://github.com/mindmup/mindmup/blob/master/LICENSE" target="_blank">click here</a>)</p>
<p>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p>
<p>All user created content stored in third party storage services is the ownership of the respective users that created it and unless specified differently
all rights belong to those users. All user content stored on anonymous MindMup public storage is licensed under the <a href='http://creativecommons.org/publicdomain/zero/1.0/legalcode' rel='nofollow' target='_blank'>CC0 1.0 Universal</a> terms.</p>
<p>By using this web site you agree to our <a href="/legal/privacy" target="_blank">privacy policy</a>.</p>
<p>Built with <a href='http://twitter.github.com/bootstrap/' rel='nofollow' target='_blank'>Bootstrap</a>,
<a href='http://www.sinatrarb.com/' rel='nofollow' target='_blank'>Sinatra</a>,
<a href='http://jquery.com/' rel='nofollow' target='_blank'>JQuery</a>.
Icons from <a href='http://fortawesome.github.com/Font-Awesome' rel='nofollow' target='_blank'>Font Awesome</a> by Dave Gandy.</p>
</div>
<div class="modal-footer">
<a href='#' data-dismiss='modal' class='btn btn-primary'>Close</a>
</div>
</div>
<div id='modalGoldStorageOpen' class='modal hide fade'>
<div class='modal-header'>
<button type='button' class='close' data-dismiss='modal' aria-hidden='true'>×</button>
<h3>Mindmup Gold Maps</h3>
</div>
<div class='modal-body'>
<div data-mm-role="status"></div>
<div data-mm-role="section" data-mm-section="file-list">
<table class="table table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Last modified</th>
<th></th>
</tr>
</thead>
<tbody>
<tr data-mm-role='template'>
<td><a href="#" data-mm-role='file-link'></a></td>
<td data-mm-role='modification-status'></td>
<td>
<button data-mm-role='map-delete' class='btn-inline pull-right icon-trash hidden-phone' rel='tooltip' data-title='Delete Map'></button>
</td>
</tr>
</tbody>
</table>
</div>
<div data-mm-section="delete-map delete-map-in-progress" >
<p>Delete <strong><span data-mm-role="map-name"></span></strong>?</p>
</div>
<div data-mm-section="delete-map-successful">
<div class="alert alert-success alert-block">
<h4>The map was deleted</h4>
</div>
</div>
<div data-mm-section="delete-map-failed">
<div class="error alert alert-error alert-block">
<p><h4>The map was not deleted</h4></p>
<p>Please try again later.</p>
<p>If the error persists, please email <a href="mailto:contact@mindmup.com?subject=Unable to delete gold map">contact@mindmup.com<a> and let us know the name of the map you are trying to delete.</p>
</div>
</div>
</div>
<div class='modal-footer'>
<a class="pull-left btn" href="http://discover.mindmup.com/mindmup-gold#managing-files" target="_blank" data-mm-section="file-list"><i class="icon-question-sign"></i> More Info</a>
<a href='#' class='btn pull-left' data-mm-section="delete-map delete-map-failed" data-mm-role="show-section" data-mm-target-section="file-list">< Back</a>
<a href='#' class='btn btn-danger' data-mm-role="delete-map-confirmed" data-mm-section="delete-map">Delete File</a>
<button class='btn' disabled data-mm-section="delete-map-in-progress"><i class="icon-spinner icon-spin"></i> Delete File</button>
<a href='#' data-dismiss='modal' class='btn' data-mm-section="file-list delete-map-in-progress delete-map-successful delete-map-failed">Close</a>
<a href='#' data-dismiss='modal' class='btn' data-mm-section="delete-map">Cancel</a>
</div>
</div>
<div id="modalAttachmentEditor" class="hide">
<div class="viewer-topbar">
<button rel='tooltip' data-placement='bottom' data-mm-role='close' class='close' title='Close (Esc)'>×</button>
<button class="pull-right btn btn-small btn-primary" rel='tooltip' data-placement='bottom' data-mm-role='edit' title='Edit (Ctrl/Cmd+Enter)'>Edit</button>
</div>
<div class="editor-topbar">
<div class="btn-toolbar" data-role="editor-toolbar" data-target="#editor">
<span class="btn-group">
<a class="btn btn-small dropdown-toggle" rel='tooltip' data-placement='bottom' data-toggle="dropdown" title="Font"><i class="icon-font"></i><b class="caret"></b></a>
<ul class="dropdown-menu" data-mm-role='font'></ul>
</span>
<span class="btn-group">
<a class="btn btn-small dropdown-toggle" rel='tooltip' data-placement='bottom' data-toggle="dropdown" title="Font Size"><i class="icon-text-height"></i> <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a data-edit="fontSize 5"><font size="5">Huge</font></a></li>
<li><a data-edit="fontSize 3"><font size="3">Normal</font></a></li>
<li><a data-edit="fontSize 1"><font size="1">Small</font></a></li>
</ul>
</span>
<span class="btn-group hidden-phone">
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="bold" title="Bold (Ctrl/Cmd+B)"><i class="icon-bold"></i></a>
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="italic" title="Italic (Ctrl/Cmd+I)"><i class="icon-italic"></i></a>
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="strikethrough" title="Strikethrough"><i class="icon-strikethrough"></i></a>
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="underline" title="Underline (Ctrl/Cmd+U)"><i class="icon-underline"></i></a>
</span>
<span class="btn-group hidden-phone">
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="insertunorderedlist" title="Bullet list"><i class="icon-list-ul"></i></a>
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="insertorderedlist" title="Number list"><i class="icon-list-ol"></i></a>
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="outdent" title="Reduce indent (Shift+Tab)"><i class="icon-indent-left"></i></a>
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="indent" title="Indent (Tab)"><i class="icon-indent-right"></i></a>
</span>
<span class="btn-group visible-desktop" >
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="justifyleft" title="Align Left (Ctrl/Cmd+L)"><i class="icon-align-left"></i></a>
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="justifycenter" title="Center (Ctrl/Cmd+E)"><i class="icon-align-center"></i></a>
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="justifyright" title="Align Right (Ctrl/Cmd+R)"><i class="icon-align-right"></i></a>
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="justifyfull" title="Justify (Ctrl/Cmd+J)"><i class="icon-align-justify"></i></a>
</span>
<span class="btn-group visible-desktop">
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="undo" title="Undo (Ctrl/Cmd+Z)"><i class="icon-undo"></i></a>
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="redo" title="Redo (Ctrl/Cmd+Y)"><i class="icon-repeat"></i></a>
</span>
<span class="btn-group">
<a class="btn btn-small" rel="tooltip" data-placement="bottom" title="Insert picture (or just drag & drop)" id="pictureBtn"><i class="icon-picture"></i></a>
<input type="file" data-role="magic-overlay" data-target="#pictureBtn" data-edit="insertImage" />
<a class="btn btn-small dropdown-toggle" data-toggle="dropdown" rel='tooltip' data-placement='bottom' title="Hyperlink"><i class="icon-link"></i></a>
<span class="dropdown-menu input-append">
<input class="span2" placeholder="URL" type="text" data-edit="createLink"/>
<button class="btn" type="button">Add</button>
</span>
<a class="btn btn-small hidden-phone" data-edit="unlink" rel='tooltip' data-placement='bottom' title="Remove Hyperlink"><i class="icon-cut"></i></a>
</span>
</li>
<span class="btn-group hidden-desktop">
<a class="btn btn-small dropdown-toggle" rel='tooltip' data-placement='bottom' data-toggle="dropdown" title="Other Tools"><i class="icon-wrench"></i> <b class="caret"></b></a>
<span class="dropdown-menu">
<div class="btn-toolbar">
<span class="btn-group visible-phone">
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="bold" title="Bold (Ctrl/Cmd+B)"><i class="icon-bold"></i></a>
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="italic" title="Italic (Ctrl/Cmd+I)"><i class="icon-italic"></i></a>
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="strikethrough" title="Strikethrough"><i class="icon-strikethrough"></i></a>
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="underline" title="Underline (Ctrl/Cmd+U)"><i class="icon-underline"></i></a>
</span>
<span class="btn-group visible-phone">
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="insertunorderedlist" title="Bullet list"><i class="icon-list-ul"></i></a>
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="insertorderedlist" title="Number list"><i class="icon-list-ol"></i></a>
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="outdent" title="Reduce indent (Shift+Tab)"><i class="icon-indent-left"></i></a>
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="indent" title="Indent (Tab)"><i class="icon-indent-right"></i></a>
</span>
<span class="btn-group hidden-desktop">
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="justifyleft" title="Align Left (Ctrl/Cmd+L)"><i class="icon-align-left"></i></a>
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="justifycenter" title="Center (Ctrl/Cmd+E)"><i class="icon-align-center"></i></a>
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="justifyright" title="Align Right (Ctrl/Cmd+R)"><i class="icon-align-right"></i></a>
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="justifyfull" title="Justify (Ctrl/Cmd+J)"><i class="icon-align-justify"></i></a>
</span>
<span class="btn-group hidden-desktop">
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="undo" title="Undo (Ctrl/Cmd+Z)"><i class="icon-undo"></i></a>
<a class="btn btn-small" rel='tooltip' data-placement='bottom' data-edit="redo" title="Redo (Ctrl/Cmd+Y)"><i class="icon-repeat"></i></a>
</span>
<span class="btn-group visible-phone">
<a class="btn btn-small" data-edit="unlink" rel='tooltip' data-placement='bottom' title="Remove Hyperlink"><i class="icon-cut"></i></a>
</span>
</div>
</span>
</span>
<div class="pull-right non-group">
<button class="btn btn-small btn-warning" rel='tooltip' data-placement='bottom' data-mm-role='close' title='Cancel changes (Esc)'>
<span class="icon-remove-circle"/><span class="visible-desktop"> Cancel</span>
</button>
<button class="btn btn-small btn-danger" rel='tooltip' data-placement='bottom' data-mm-role='clear' title='Delete'>
<span class="icon-trash"/><span class="visible-desktop"> Delete</a></button>
<button class="btn btn-small btn-primary" rel='tooltip' data-placement='bottom' data-mm-role='save' title='Save changes (Ctrl/Cmd+Enter)'>
<span class="icon-save"/><span class="visible-desktop"> Save</span></button>
</div>
</div>
</div>
<div id='attachEditArea' data-mm-role='editor'></div>
</div>
<div id='modalAutoSave' class='modal hide fade'>
<div class='modal-header'>
<h3>You have unsaved local changes</h3>
</div>
<div class='modal-body'>
<p>
You have made local changes to this map that were not saved.
Please choose if you would like to apply them or discard them and continue with the saved version.
</p>
</div>
<div class='modal-footer'>
<a data-category="Auto Save" data-event-type="Apply" href='#' data-mm-role='apply' tabstop='1' class='btn btn-primary'>Apply local changes</a>
<a data-category="Auto Save" data-event-type="Discard" href='#' data-mm-role='discard' tabstop='2' class='btn'>Discard local changes</a>
</div>
</div>
<div id='modalExtensions' class='modal hide fade'>
<div class='modal-header'>
<button type='button' class='close' data-dismiss='modal' aria-hidden='true'>×</button>
<h3>Extensions</h3>
</div>
<div class='modal-body'>
<div data-mm-role="ext-list">
<div data-mm-role="template">
<input type="checkbox"> <h4 data-mm-role="title"></h4><p data-mm-role="desc"> (<a data-mm-role="doc" target="_blank">more info</a>)</p>
</div>
</div>
</div>
<div class='modal-footer'>
<a href='#' data-dismiss='modal' class='btn btn-primary'>Close</a>
</div>
</div>
<div id='modalKeyActions' class='modal hide fade'>
<div class='modal-header'>
<button type='button' class='close' data-dismiss='modal' aria-hidden='true'><i class="icon-remove"></i></button>
<h3>
<i class="logo"> </i>
MindMup
<small class="hidden-phone">Zero-friction free online mind mapping</small>
</h3>
</div>
<div class='modal-body'>
<div class="carousel slide" data-interval="false" id="topbox">
<div class="carousel-inner">
<div class="active item">
<button data-target="#topbox" data-slide-to="1" class="btn btn-xlarge slide-control"><i class="icon-lightbulb icon-large"></i> Create a new map</button>
<button data-target="#topbox" data-slide-to="2" class="btn btn-xlarge"><i class="icon-cloud-upload icon-large"></i> Open a map</button>
<button data-target="#topbox" data-slide-to="3" class="btn btn-xlarge"><i class="icon-book icon-large"></i> Learn how to...</button>
<button data-target="#topbox" data-slide-to="4" class="btn btn-xlarge"><i class="icon-envelope icon-large"></i> Get in touch</button>
</div>
<div class="item">
<h1><i class="icon-lightbulb icon-large"></i> Create a new map</h1>
<ul data-mm-role="new-sources" class="nav nav-tabs nav-stacked">
<li><a data-mm-role="dismiss-modal new-map" data-category="Start Menu" data-event-type="Create - s3" href="#" data-mm-map-source="a"><span class="repo repo-a"></span>Public online map to share with the world</a></li>
<li><a data-mm-role="dismiss-modal new-map" data-category="Start Menu" data-event-type="Create - google" href="#" data-mm-map-source="g"><span class="repo repo-g"></span>Private map on Google Drive (you control sharing)</a></li>
<li><a data-mm-role="dismiss-modal new-map" data-category="Start Menu" data-event-type="Create - gold" href="#" data-mm-map-source="p"><span class="repo repo-p"></span>Private map on MindMup Gold (requires subscription)</a></li>
<li><a class="slide-control" data-slide-to="0" data-target="#topbox"><span class="icon-arrow-left"></span>Main menu</a></li>
</ul>
<a data-category="Start Menu" data-event-type="Describe - storage" target="_blank" href="http://blog.mindmup.com/p/storage-options.html" class="pull-right">More information about storage options</a>
</div>
<div class="item">
<h1><i class="icon-cloud-upload icon-large"></i> Open a map</h1>
<ul data-mm-role="open-sources" class="nav nav-tabs nav-stacked">
<li><a data-mm-role="dismiss-modal" data-category="Start Menu" data-event-type="Import" data-target="#modalImport" data-toggle="modal"><span class="icon-upload"></span>Import a Freemind or MindMup file</a></li>
<li><a data-mm-role="dismiss-modal google-drive-open" data-category="Start Menu" data-event-type="Open from Google"><span class="repo repo-g"></span> Open a Freemind or MindMup file from Google Drive</a>
<li><a data-mm-role="dismiss-modal" data-category="Start Menu" data-event-type="Open from Mindmup Gold Storage" data-target="#modalGoldStorageOpen" data-toggle="modal"><span class="repo repo-b"></span> Open from Mindmup Gold Storage</a></li>
<li><a class="slide-control" data-slide-to="0" data-target="#topbox"><span class="icon-arrow-left"></span>Main menu</a></li>
</ul>
</div>
<div class="item">
<h1><i class="icon-book icon-large"></i> Learn how to...</h1>
<ul class="nav nav-tabs nav-stacked">
<li><a data-mm-role="dismiss-modal" data-category="Start Menu" data-event-type="Learn - mouse" target="_blank" href="http://discover.mindmup.com/mouse-touch-operations"><span class="icon-hand-up"></span>Edit the map using touch or a mouse</a></li>
<li><a data-mm-role="dismiss-modal" data-category="Start Menu" data-event-type="Learn - keyboard" target="_blank" href="http://discover.mindmup.com/keyboard-shortcuts"><span class="icon-keyboard"></span>Be more productive with keyboard shortcuts</a></li>
<li><a data-mm-role="dismiss-modal" data-category="Start Menu" data-event-type="Learn - realtime" target="_blank" href="http://blog.mindmup.com/p/realtime-collaboration.html"><span class="icon-group"></span>Collaborate in real time with your colleagues</a></li>
<li><a data-mm-role="dismiss-modal" data-category="Start Menu" data-event-type="Learn - screen-max" target="_blank" href="http://blog.mindmup.com/2013/03/go-full-screen-remove-all-distractions.html"><span class="icon-laptop"></span>Get the most out of your screen</a></li>
<li><a data-mm-role="dismiss-modal" data-category="Start Menu" data-event-type="Learn - gold" target="_blank" href="http://discover.mindmup.com/mindmup-gold"><span class="repo repo-b"></span>Get more space and share larger maps on MindMup</a></li>
<li><a class="slide-control" data-slide-to="0" data-target="#topbox"><span class="icon-arrow-left"></span>Main menu</a></li>
</ul>
</div>
<div class="item">
<h1><i class="icon-envelope icon-large"></i> Get in touch</h1>
<ul class="nav nav-tabs nav-stacked">
<li><a data-mm-role="dismiss-modal" data-category="Start Menu" data-event-type="Get in touch - email" href="mailto:contact@mindmup.com"><span class="icon-envelope"></span>E-mail</a></li>
<li><a data-mm-role="dismiss-modal" data-category="Start Menu" data-event-type="Get in touch - blog" target="_blank" href="http://blog.mindmup.com"><span class="icon-rss"></span>Blog/News</a></li>
<li><a data-mm-role="dismiss-modal" data-category="Start Menu" data-event-type="Get in touch - vote" target="_blank" href="http://mindmup.uservoice.com"><span class="icon-bullhorn"></span>Vote on features</a></li>
<li><a data-mm-role="dismiss-modal" data-category="Start Menu" data-event-type="Get in touch - facebook" target="_blank" href="http://facebook.com/mindmupapp"><span class="icon-facebook"></span>Get news through Facebook</a></li>
<li><a data-mm-role="dismiss-modal" data-category="Start Menu" data-event-type="Get in touch - google+" target="_blank" href="https://plus.google.com/u/0/communities/112831595986131146219"><span class="icon-google-plus"></span>Join the MindMup Google+ community</a></li>
<li><a data-mm-role="dismiss-modal" data-category="Start Menu" data-event-type="Get in touch - twitter" target="_blank" href="https://twitter.com/intent/user?screen_name=mindmup"><span class="icon-twitter"></span>Follow @mindmup on Twitter</a></li>
<li><a data-mm-role="dismiss-modal" data-category="Start Menu" data-event-type="Get in touch - github" target="_blank" href="http://github.com/mindmup"><span class="icon-github"></span>Source code on Github</a></li>
<li><a class="slide-control" data-slide-to="0" data-target="#topbox"><span class="icon-arrow-left"></span>Main menu</a></li>
</ul>
</div>
<div class="item">
<h1>MindMup - free online mind mapping software</h1>
<p>Make a mind map online, free, and keep it in the cloud with Google Drive, Dropbox, GitHub and our free anonynous storage. MindMup is a free online mind mapping application running opensource mind mapping software. MindMup is a zero friction mind map maker, helping you focus on your work and removing all the distractions while mindmapping. It is a highly productive mindmap creator, a great free alternative to XMind and MindMeister, with powerful keyboard shortcuts and allowing advanced users to get the most out of their screen real-estate with configurable toolbars. MindMup is available everywhere: you can access your maps with a browser or a mobile device, and cloud storage ensures you have access to your data where ever you are, and the application works nicely with both desktop, tablet and mobile browsers. Freemind mind map import/export is available.</p>
<p>If you are looking to create a mind-map online, MindMup is the app I would recommend the most. MindMup is the sort of app everyone dreams of finding online. It’s open-source, free and integrated with all the best tools. It’s also designed by people who use the app, so it’s efficient and effective. And unlike so much free software, it looks great too." - MakeUseOf <a href="http://www.makeuseof.com/tag/try-mindmup-mind-mapping-via-google-drive/" rel="nofollow">MakeUseOf</a></p>
<p>MindMup is super-simple, lightweight, and generally a joy to use. - <a href="http://www.pcworld.com/article/2032818/review-mindmup-is-a-free-effortless-way-to-create-mind-maps-in-moments.html" rel="nofollow">PC World</a></p>
<p>What I like about Mindmup is that it is clean and simple. As they describe, it allows for frictionless capture of ideas and projects. It is not bloated with unneeded features. The UI stays out of your way and lets you get your ideas out. - <a rel="nofollow" href="http://timemanagementninja.com/links/app-of-the-week-mindmup/">Time Management Ninja</a></p>
<p>If you like to plan and brainstorm by creating mind maps to link together ideas, MindMup is a great browser-based program that helps you get organized with lots of features. - <a rel="nofollow" href="http://lifehacker.com/mindmup-maps-your-brain-in-the-browser-614853279">LifeHacker</a></p>
</div>
</div>
</div>
</div>
<div class="modal-footer">
</div>
</div>
<div id="modalConfirm" class="modal hide fade">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 data-mm-role="title"></h3>
</div>
<div class="modal-body">
<span data-mm-role="explanation"></span>
</div>
<div class="modal-footer">
<a tabstop="1" href="#" class="btn btn-primary" data-mm-role="confirm" data-dismiss="modal"></a>
<a tabstop="2" href="#" class="btn" data-dismiss="modal">Cancel</a>
</div>
</div>
<div id="modalPDFExport" data-mm-role="layout-export" class="modal hide fade" data-mm-format="pdf" data-mm-launch-key-code="80">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3>Create a Printable PDF</h3>
</div>
<div class="modal-body">
<div class="visible initial">
<p>The map will be <a href="http://blog.mindmup.com/p/pdf-export.html" target="_blank" >securely uploaded</a> to our server for processing.
</p>
<form class="form-horizontal" data-mm-role="export-parameters">
<div class="control-group">
<label class="control-label">Orientation:</label>
<div class="controls">
<div class="btn-group" data-toggle="buttons-radio">
<button name="orientation" type="button" class="btn active" value="landscape">
<img src="static/img/portrait.png" class="export landscape"/>
</button>
<button name="orientation" type="button" class="btn " value="portrait">
<img src="static/img/portrait.png" class="export"/>
</button>
</div>
</div>
</div>
<div class="control-group">
<label class="control-label">Page Size:</label>
<div class="controls">
<select name="page-size">
<option>A0</option>
<option>A1</option>
<option>A2</option>
<option>A3</option>
<option selected>A4</option>
<option>A5</option>
<option value="LETTER">US Letter</option>
<option value="LEGAL">US Legal</option>
<option value="TABLOID">US Tabloid</option>
</select>
</div>
</div>
<div class="control-group">
<label class="control-label">Text orientation:</label>
<div class="controls">
<select name="direction">
<option value="ltr">Left to right</option>
<option value="rtl">Right to left</option>
</select>
</div>
</div>
</form>
</div>
<div class="visible inprogress alert alert-info alert-block">
<i class="icon-spinner icon-spin"></i> Please wait, exporting the map...
</div>
<div class="visible done alert alert-success alert-block">
<h4>Export complete:</h4> <a target="_blank" data-mm-role="output-url">Click here to open</a> (This link will remain available for 24 hours)
</div>
<div class="visible error alert alert-error alert-block">
<h4>Unable to export PDF:</h4>
<br/>
<span data-mm-role="error-message"></span>
<span data-mm-role="generation-error">
This map contains a feature not currently supported by PDF export. Please contact us at <a data-mm-role="contact-email">contact@mindmup.com</a> quoting the reference number: <b data-mm-role="file-id"></b>
</span>
<span data-mm-role="file-too-large">
<p>
The map you are exporting is too large. The maximum size of maps that can be exported online is:
<ul>
<li>Anonymous users: 100 Kb </li>
<li><a href="http://discover.mindmup.com/mindmup-gold" target="_blank">Mindmup Gold</a> users: 953 Mb</li>
</ul>
<p>For maps larger than 953Mb, Mindmup Gold Users should contact us at <a href="mailto:contact@mindmup.com?subject=Offline%20MindMup%20PDF%20Export">contact@mindmup.com</a> to arrange an offline export.</p>
</p>
</span>
<span data-mm-role="polling-timeout">
The server is too busy. Please try again later, or if this error persists contact us at <a data-mm-role="contact-email">contact@mindmup.com</a>
</span>
<span data-mm-role="network-error">
This operation requires a network connection and we can't reach MindMup servers at the moment. Please ensure that you are online and try again. If this error persists contact us at <a data-mm-role="contact-email">contact@mindmup.com</a>
</span>
</div>
</div>
<div class="modal-footer">
<a class="pull-left btn visible initial" href="http://blog.mindmup.com/p/how-to-print-large-maps.html" target="_blank"><i class="icon-question-sign"></i> How to print large maps</a>
<a tabstop="1" href="#" class="btn btn-primary visible initial" data-mm-modal-shown-focus data-mm-role="start-export">Create PDF</a>
<a tabstop="2" href="#" class="btn visible initial inprogress" data-dismiss="modal">Cancel</a>
<a tabstop="2" href="#" class="btn visible done error" data-dismiss="modal">Close</a>
</div>
</div>
<div id="modalAtlasPublish" data-mm-role="atlas-publish layout-export" class="modal hide fade" data-mm-format="publish.json">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3><i class="icon-cloud-upload"></i> Publish to MindMup Atlas</h3>
</div>
<div class="modal-body">
<div class="visible initial">
<p>MindMup Atlas is a cloud mind map library that enables authors to publish interactive, read-only maps, optimised for posting to social networks and embedding in web sites.</p>
<ul>
<li>Anyone can publish maps up to 100 KByte. Published maps will be available for at least 6 months.</li>
<li><a target="_blank" href="http://discover.mindmup.com/mindmup-gold">MindMup Gold</a> users can publish maps up to 100 MByte for the duration of their subscription.</li>
</ul>
<p>By clicking on <b>Start</b>, you accept the <a href="/legal/atlas" target="#blank">Terms and Conditions</a> for MindMup Atlas.</p>
</div>
<div class="visible seo">
<form class="form-horizontal" data-mm-role="export-parameters atlas-metadata">
<div class="control-group">
<label class="control-label">Title:</label>
<div class="controls">
<input name="title" placeholder="Descriptive title for your map" class="input-xlarge" /> <i class="icon-question-sign" rel="tooltip" data-title="Text that will show in the browser title bar. Keep it under 40 characters." data-placement="bottom"></i>
</div>
</div>
<div class="control-group">
<label class="control-label">URL slug:</label>
<div class="controls">
<input name="slug" placeholder="URL slug" class="input-xlarge" /> <i class="icon-question-sign" rel="tooltip" data-title="Descriptive text that will form part of the URL. Keep it short!"></i>
</div>
</div>
<div class="control-group">
<label class="control-label">Description:</label>
<div class="controls">
<input name="description" placeholder="Description" class="input-xlarge" /> <i class="icon-question-sign" rel="tooltip" data-title="Page description for search engines. Keep it under 150 characters."></i>
</div>
</div>
</form>
</div>
<div class="visible inprogress alert alert-info alert-block">
<i class="icon-spinner icon-spin"></i> Please wait, publishing your map...
</div>
<div class="visible done">
<div data-mm-role="publish-status initial" class="alert alert-success alert-block">
<h4>Your map was published</h4>
</div>
<div data-mm-role="publish-status republished" class="alert alert-warning alert-block">
<h4>Your map was re-published.</h4>
<p>The updated content should be available in around 30 minutes (<a href="http://blog.mindmup.com/p/republishing-atlas-maps.html" target="_blank">more info</a>).</p>
</div>
<div class="tabbable tabs-top">
<ul class="nav nav-tabs">
<li class="active"><a href="#publish-tab-social" data-toggle="tab">Share on social networks</a></li>
<li><a href="#publish-tab-send-links" data-toggle="tab">Send links</a></li>
<li><a href="#publish-tab-embed" data-toggle="tab">Embed code</a></li>
<li><a href="#publish-tab-get-archive" data-toggle="tab">Get archive</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="publish-tab-social">
<p style="margin-bottom: 20px">Click on a button below to share quickly:</p>
<p class="text-center">
<a data-event-type="Post to Twitter"
onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"
data-category="Atlas" data-event-type="Post to Twitter" class="btn btn-large btn-share icon-twitter" rel="tooltip" data-title="Twitter" data-mm-role="twitter-url" target="_blank"></a>
<a
onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"
data-event-type="Post to Facebook" data-category="Atlas" class="btn btn-large btn-share icon-facebook" rel="tooltip" data-title="Facebook" data-mm-role="facebook-url" target="_blank"></a>
<a
onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"
data-event-type="Post to Google Plus" data-category="Atlas" class="btn btn-large btn-share icon-google-plus" rel="tooltip" data-title="Google Plus" data-mm-role="google-plus-url" target="_blank"></a>
<a
onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"
data-event-type="Post to LinkedIn" data-category="Atlas" class="btn btn-large btn-share icon-linkedin" rel="tooltip" data-title="LinkedIn" data-mm-role="linkedin-url" target="_blank"></a>
<a
data-event-type="Post to Tumblr" data-category="Atlas" class="btn btn-large btn-share icon-tumblr" rel="tooltip" data-title="Tumblr" data-mm-role="tumblr-url" target="_blank"></a>
<a
data-event-type="Post to Pinterest" data-category="Atlas" class="btn btn-large btn-share icon-pinterest" rel="tooltip" data-title="Pinterest" data-mm-role="pinterest-url" target="_blank"></a>
</p>
</div>
<div class="tab-pane" id="publish-tab-send-links">
<p class="text-center">
<a class="btn btn-large btn-share" href="mailto:" data-mm-role="email-index-html" rel="tooltip" data-title="Email a link" data-event-type="Email Link" data-category="Atlas" ><i class="icon-envelope"></i></a>
<a href="#" class="btn btn-large btn-share" data-mm-role="gmail-index-html" rel="tooltip" data-title="Gmail a link" data-event-type="Gmail Link" data-category="Atlas" target="_blank" onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><i class="mm-icon-gmail"></i></a>
</p>
<form class="form">
<div class="control-group">
<label>Web page:</label>
<div class="input-append">
<input data-mm-role="index-html selectable-read-only" class="span5" style="outline:none" />
<a class="btn btn-small" href="#" data-mm-role="index-html" target="_blank"><i class="icon-share"></i></a>
</div>
</div>
<div class="control-group">
<label>Thumbnail image:</label>
<div class="input-append">
<input data-mm-role="thumb-png selectable-read-only" class="span5" style="outline:none" />
<a class="btn btn-small" href="#" data-mm-role="thumb-png" target="_blank"><i class="icon-share"></i></a>
</div>
</div>
</form>
</div>
<div class="tab-pane" id="publish-tab-embed">
<p>Paste the code snippet below in your web site to embed the map. Don't forget to configure the width and height of the iFrame!</p>
<textarea data-mm-role="embed-markup selectable-read-only" class="span5"></textarea>
</div>
<div class="tab-pane" id="publish-tab-get-archive">
<p class="text-center">
<a class="btn btn-large btn-share" href="mailto:" data-mm-role="email-archive-zip" rel="tooltip" data-title="Email a link" data-event-type="Email Archive" data-category="Atlas" ><i class="icon-envelope"></i></a>
<a href="#" class="btn btn-large btn-share" data-mm-role="gmail-archive-zip" rel="tooltip" data-title="Gmail a link" data-event-type="Gmail Archive" data-category="Atlas" target="_blank" onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><i class="mm-icon-gmail"></i></a>
</p>
<form class="form">
<div class="control-group">
<label>Zip Archive:</label>
<div class="input-append">
<input data-mm-role="archive-zip selectable-read-only" class="span5" style="outline:none" />
<a class="btn btn-small" href="#" data-mm-role="archive-zip" target="_blank"><i class="icon-share"></i></a>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<div class="visible error alert alert-error alert-block">
<h4>Unable to publish your map:</h4>
<br/>
<span data-mm-role="error-message"></span>
<span data-mm-role="generation-error">
This map contains a feature not currently supported by Atlas. Please contact us at <a data-mm-role="contact-email">contact@mindmup.com</a> quoting the reference number: <b data-mm-role="file-id"></b>
</span>
<span data-mm-role="file-too-large">
<p>
The map you are publishing is too large. The maximum size of maps that can be published online is:
<ul>
<li>Anonymous users: 100 Kbyte </li>
<li><a href="http://discover.mindmup.com/mindmup-gold" target="_blank">Mindmup Gold</a> users: 953 Mbyte</li>
</ul>
<p>For maps larger than 953Mbyte, Mindmup Gold Users should contact us at <a href="mailto:contact@mindmup.com?subject=Offline%20MindMup%20PDF%20Export">contact@mindmup.com</a> to arrange an offline export.</p>
</p>
</span>
<span data-mm-role="polling-timeout">
The server is too busy. Please try again later, or if this error persists contact us at <a data-mm-role="contact-email">contact@mindmup.com</a>
</span>
<span data-mm-role="network-error">
This operation requires a network connection and we can't reach MindMup servers at the moment. Please ensure that you are online and try again. If this error persists contact us at <a data-mm-role="contact-email">contact@mindmup.com</a>
</span>
</div>
</div>
<div class="modal-footer">
<a class="pull-left btn visible initial done" href="http://discover.mindmup.com/atlas" target="_blank"><i class="icon-question-sign"></i> More Info</a>
<a tabstop="1" href="#" class="btn btn-primary visible initial" data-mm-modal-shown-focus data-mm-role="set-state" data-mm-state="seo">Start ></a>
<a tabstop="1" href="#" class="btn visible seo pull-left" data-mm-role="set-state" data-mm-state="initial">< Back</a>
<a tabstop="1" href="#" class="btn btn-primary visible seo" data-mm-role="start-export">Publish</a>
<a tabstop="2" href="#" class="btn visible initial inprogress author" data-dismiss="modal">Cancel</a>
<a tabstop="2" href="#" class="btn visible done error seo" data-dismiss="modal">Close</a>
</div>
</div>
<div id="modalImageExport" data-mm-role="layout-export" class="modal hide fade" data-mm-format="png">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3>Export to Image</h3>
</div>
<div class="modal-body">
<div class="visible initial">
<p>Click the Export button to securely upload the map for conversion to PNG.</p>
</div>
<div class="visible inprogress alert alert-info alert-block">
<i class="icon-spinner icon-spin"></i> Please wait, exporting the map...
</div>
<div class="visible done alert alert-success alert-block">
<h4>Export complete:</h4> <a target="_blank" data-mm-role="output-url">Click here to open</a> (This link will remain available for 24 hours)
</div>
<div class="visible error alert alert-error alert-block">
<h4>Unable to export Image:</h4>
<br/>
<span data-mm-role="error-message"></span>
<span data-mm-role="generation-error">
This map contains a feature not currently supported by Image export. Please contact us at <a data-mm-role="contact-email">contact@mindmup.com</a> quoting the reference number: <b data-mm-role="file-id"></b>
</span>
<span data-mm-role="file-too-large">
<p>
The map you are exporting is too large. The maximum size of maps that can be exported online is:
<ul>
<li>Anonymous users: 100 Kb </li>
<li><a href="http://discover.mindmup.com/mindmup-gold" target="_blank">Mindmup Gold</a> users: 953 Mb</li>
</ul>
<p>For maps larger than 953Mb, Mindmup Gold Users should contact us at <a href="mailto:contact@mindmup.com?subject=Offline%20MindMup%20PDF%20Export">contact@mindmup.com</a> to arrange an offline export.</p>
</p>
</span>
<span data-mm-role="polling-timeout">
The server is too busy. Please try again later, or if this error persists contact us at <a data-mm-role="contact-email">contact@mindmup.com</a>
</span>
<span data-mm-role="network-error">
This operation requires a network connection and we can't reach MindMup servers at the moment. Please ensure that you are online and try again. If this error persists contact us at <a data-mm-role="contact-email">contact@mindmup.com</a>
</span>
</div>
</div>
<div class="modal-footer">
<a tabstop="1" href="#" class="btn btn-primary visible initial" data-mm-modal-shown-focus="true" data-mm-role="start-export">Export</a>
<a tabstop="2" href="#" class="btn visible initial inprogress" data-dismiss="modal">Cancel</a>
<a tabstop="2" href="#" class="btn visible done error" data-dismiss="modal">Close</a>
</div>
</div>
<div id="modalPresentationExport" data-mm-role="layout-export" class="modal hide fade">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3>Export slideshow </h3>
</div>
<div class="modal-body">
<div class="visible initial">
<p>Please select slideshow format and click the Export button to securely upload the storyboard for conversion:</p>
<form class="form-horizontal">
<div class="control-group">
<label class="control-label" for="slideshowFormatSelector">Slideshow format</label>
<div class="controls">
<select data-mm-role="format-selector" id="slideshowFormatSelector">
<option value="presentation.pdf">PDF</option>
<option value="presentation.pptx">Powerpoint (Beta)</option>
</select>
</div>
</div>
</form>
</div>
<div class="visible inprogress alert alert-info alert-block">
<i class="icon-spinner icon-spin"></i> Please wait, exporting the storyboard...
</div>
<div class="visible done alert alert-success alert-block">
<h4>Export complete:</h4> <a target="_blank" data-mm-role="output-url">Click here to open</a> (This link will remain available for 24 hours)
</div>
<div class="visible error alert alert-error alert-block">
<h4>Unable to export Slideshow:</h4>
<br/>
<span data-mm-role="error-message"></span>
<span data-mm-role="generation-error">
This storyboard contains a feature not currently supported by slideshow export. Please contact us at <a data-mm-role="contact-email">contact@mindmup.com</a> quoting the reference number: <b data-mm-role="file-id"></b>
</span>
<span data-mm-role="file-too-large">
<p>
The storyboard you are exporting is too large. The maximum size of storyboard that can be exported online is:
<ul>
<li>Anonymous users: 100 Kb </li>
<li><a href="http://discover.mindmup.com/mindmup-gold" target="_blank">Mindmup Gold</a> users: 953 Mb</li>
</ul>
<p>For storyboards larger than 953Mb, Mindmup Gold Users should contact us at <a href="mailto:contact@mindmup.com?subject=Offline%20MindMup%20Slideshow%20Export">contact@mindmup.com</a> to arrange an offline export.</p>
</p>
</span>
<span data-mm-role="polling-timeout">
The server is too busy. Please try again later, or if this error persists contact us at <a data-mm-role="contact-email">contact@mindmup.com</a>
</span>
<span data-mm-role="network-error">
This operation requires a network connection and we can't reach MindMup servers at the moment. Please ensure that you are online and try again. If this error persists contact us at <a data-mm-role="contact-email">contact@mindmup.com</a>
</span>
<span data-mm-role="empty">There are no slides in this storyboard. Add some slides before exporting.</span>
</div>
</div>
<div class="modal-footer">
<a tabstop="1" href="#" class="btn btn-primary visible initial" data-mm-modal-shown-focus="true" data-mm-role="start-export">Export</a>
<a tabstop="2" href="#" class="btn visible initial inprogress" data-dismiss="modal">Cancel</a>
<a tabstop="2" href="#" class="btn visible done error" data-dismiss="modal">Close</a>
</div>
</div>
<div class="modal hide fade" id='modalGoldLicense'>
<div class="modal-header">
<button data-event-type="x" data-category="Gold Click" type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3><span data-mm-section="no-license license-required" class="hidden-phone">Welcome to </span>MindMup Gold</h3>
</div>
<div class="modal-body">
<div data-mm-section="license-required">
<p class="alert alert-block alert-warning">This operation requires a valid MindMup Gold License.</p>
</div>
<div data-mm-section="no-license license-required">
<p><i>Export, save and embed larger maps using MindMup Gold. </i></p>
<form class="form-horizontal">
<div class="control-group">
<label class="control-label" for="gold-account-identifer">Log in or sign up:</label>
<div class="controls">
<input type="text" data-mm-role="gold-account-identifier" id="gold-account-identifier" placeholder="Account name or e-mail"/>
</div>
</div>
</form>
</div>
<div data-mm-section="code-sent">
<p>We have sent a temporary access code to your e-mail.</p>
<form class="form-horizontal">
<div class="control-group">
<label class="control-label" for="gold-access-code">Enter code from e-mail:</label>
<div class="controls">
<input type="text" data-mm-role="gold-access-code" id="gold-access-code" placeholder="Access code" />
</div>
</div>
</form>
</div>
<div data-mm-section="sending-restore-license-code">
<p><i class="icon-spinner icon-spin"></i> Please wait, your license is being restored</p>
</div>
<div data-mm-section="sending-code-failed">
<p class="alert alert-block alert-error">We could not find that email or username.</p>
<p> If you are a new user select <strong>I want to sign up</strong>, or go <strong>Back</strong> to provide a different email. If you think this is an error, please email us at <a target="_blank" href="mailto:contact@mindmup.com?subject=Gold%20Login">contact@mindmup.com</a></p>
</div>
<div data-mm-section="sending-code">
<p><i class="icon-spinner icon-spin"></i> Please wait, sending the access code to your e-mail</p>
</div>
<div data-mm-section="restore-code-failed">
<p class="alert alert-block alert-error">The code you entered was rejected.</p>
<p>If you think this is an error, please email us at <a target="_blank" href="mailto:contact@mindmup.com?subject=Gold%20Login">contact@mindmup.com</a></p>
</div>
<div data-mm-section="unauthorised-license">
<p class="alert alert-block alert-error">This operation is not authorised under your current MindMup Gold License. The license might
have expired, or the file you are trying to access might have been saved using a different license.</p>
<p>Click on <strong>Log Out</strong> to change the active license in this browser or <strong>View Subscription</strong> to see your subscription details and renew it. </p>
<form class="form-horizontal">
<div class="control-group">
<label class="control-label" for="gold-view-account-name">Account name</label>
<div class="controls">
<input type="text" data-mm-role="account-name" readonly="true" id="gold-view-account-name"/>
</div>
</div>
</form>
<p>If you think that this is an error, please send us an e-mail at <a target="_blank" href="mailto:contact@mindmup.com?subject=MindMup%20Gold">contact@mindmup.com</a></p>
</div>
<div data-mm-section="invalid-license">
<p class="alert alert-error alert-block">This license is invalid or expired</p>
<p>Click on <strong>Log Out</strong> to change the active license in this browser. </p>
<p>If you think that this is an error, please send us an e-mail at <a target="_blank" href="mailto:contact@mindmup.com?subject=MindMup%20Gold">contact@mindmup.com</a></p>
</div>
<div data-mm-section="license-server-unavailable">
<p>This license server is unavailable at the moment. Please try again later. If the problem persists, please send us an e-mail at <a target="_blank" href="mailto:contact@mindmup.com?subject=MindMup%20Gold">contact@mindmup.com</a></p>
</div>
<!-- active, delinquent, not-purchased, required -->
<!------------ ----->
<div data-mm-section="license-not-purchased" data-mm-poll-for-subscription="true">
<p class="alert alert-error alert-block">A subscription has not been purchased for this license. If you have paid using PayPal in the last 15 minutes, please wait for your payment to be processed.</p>
<form class="form-horizontal">
<div class="control-group">
<label class="control-label" for="gold-view-account-name">Account name</label>
<div class="controls">
<input type="text" data-mm-role="account-name" readonly="true" id="gold-view-account-name"/>
</div>
</div>
<div class="control-group">
<label class="control-label">Subscription</label>
<div class="controls">
<select data-mm-role="form-input-updater" data-mm-form="license-purchase-form" data-mm-form-field="subscription-code">
<option value=""> monthly</option>
<option value=""> yearly</option>
</select>
</div>
</div>
</form>
<p class="hidden-phone">Click on <strong>Log Out</strong> to remove this license from your browser or choose a payment option below to proceed to a secure payment page.</p>
<p>If you think that this is an error, please send us an e-mail at <a target="_blank" href="mailto:contact@mindmup.com?subject=MindMup%20Gold">contact@mindmup.com</a></p>
</div>
<div data-mm-section="view-license">
<p>You are currently subscribed as <strong><span data-mm-role="account-name"></span></strong></p>
</div>
<div data-mm-section="license-active-stripe license-active-paypal">
<p>You are currently subscribed as <strong><span data-mm-role="account-name"></span></strong> with a
<strong><span data-mm-role="license-period"></span>ly</strong> billing cycle.</p>
<p>Your next payment of <strong><span data-mm-role="renewal-price"></span></strong>
will be automatically taken on <strong><span data-mm-role="expiry-date"></span></strong>
using
<span data-mm-section="license-active-paypal">
your PayPal pre-approved payment
</span>
<span data-mm-section="license-active-stripe">
<br/>
</span>
<strong data-mm-role="license-method"></strong>.
</p>
<div data-mm-section="license-active-paypal">
To cancel or amend your subscription details, please go directly to your PayPal account pre-approved payments.
</div>
</div>
<div data-mm-section="license-active">
<p>You are currently using MindMup Gold as <strong><span data-mm-role="account-name"></span></strong>. <br/>
Your
license is valid until <strong><span data-mm-role="expiry-date"></span></strong>, and will not be automatically renewed.
</p>
<p>If you would like to extend the license, please contact <a href="mailto:contact@mindmup.com">contact@mindmup.com</a></p>
</div>
<div data-mm-section="license-delinquent-stripe license-delinquent-paypal">
<p>You are currently using MindMup Gold as <strong><span data-mm-role="account-name"></span></strong>. <br/>
Your
license <span class="text-error">expired on <span data-mm-role="expiry-date"></span></span>, and we could not
automatically renew it using
<span data-mm-section="license-delinquent-paypal">
your PayPal pre-approved payment <br/>
</span>
<strong><span data-mm-role="license-method"></span></strong>.
</p>
<p data-mm-section="license-delinquent-paypal">Please set up a new payment type directly on PayPal or ensure you have enough funds in the account for the
payment to be processed.</p>
<p data-mm-section="license-delinquent-stripe">Please update your card details or confirm with your bank that the card is active.
We will try to re-process the payment automatically shortly.</p>
</div>
<div data-mm-section="license-expired">
<p>You are currently using MindMup Gold as <strong><span data-mm-role="account-name"></span></strong>.<br/>
Your
license <span class="text-error">expired on <span data-mm-role="expiry-date"></span></span>.</p>
<p>Click on <strong>Log Out</strong> to log on using a different account, or select a billing cycle and payment method to
re-activate your account:</p>
<form class="form-horizontal">
<div class="control-group">
<label class="control-label">Subscription</label>
<div class="controls">
<select data-mm-role="form-input-updater" data-mm-form="license-purchase-form" data-mm-form-field="subscription-code">
<option value=""> monthly</option>
<option value=""> yearly</option>
</select>
</div>
</div>
</form>
</div>
<div data-mm-section="cancelling-subscription">
<p><i class="icon-spinner icon-spin"></i> Please wait, we are cancelling your subscription</p>
</div>
<div data-mm-section="cancelled-subscription">
<p>You have cancelled automatic renewal for your subscription as <strong><span data-mm-role="account-name"></span></strong> </p>
<p>Your current subscription will expire on <strong><span data-mm-role="expiry-date"></span></strong><span data-mm-role="subscription-expiry"></span></p>
</div>
<div data-mm-section="cancellation-failed">
<p class="alert alert-block alert-error">Due to a network problem, it was not possible to cancel your subscription at this moment</p>
<p>Please try again later. If the problem persists, contact us at <a href="mailto:contact@mindmup.com">contact@mindmup.com</a></p>
</div>
<div data-mm-section="payment-complete">
<p class="alert alert-block alert-success">Your Mindmup Gold subscription was successful</p>
<p>Thank you for your payment. You are now ready to start using MindMup Gold as <strong><span data-mm-role="account-name"></span></strong></p>
</div>
<div data-mm-section="waiting-for-payment" data-mm-poll-for-subscription="true">
<p><i class="icon-spinner icon-spin"></i> Waiting for payment to be processed</p>
</div>
<div data-mm-section="loading-subscription">
<p><i class="icon-spinner icon-spin"></i> Please wait, we are loading the subscription information for <strong><span data-mm-role="account-name"></span></strong></p>
</div>
<div data-mm-section="register">
<p>
<span class="hidden-phone-landscape"><span class="hidden-phone">Please enter your desired account name, contact email address and subscription type.</span> Your account name<span class="hidden-phone"> will be shown in the URL of your maps, and</span> must be 4-20 characters, start with a letter and contain only lowercase<span class="hidden-phone"> (latin)</span> letters and numbers.</span>
</p>