-
Notifications
You must be signed in to change notification settings - Fork 254
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3504,7 +3504,6 @@ define([ | |
switchTabCallback( mapConfig.config.name, mapContainer ); | ||
}); | ||
} | ||
|
||
}); | ||
}; | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,157 @@ | ||
// main script path | ||
var mainScriptPath = document.body.getAttribute('data-script'); | ||
|
||
// js baseURL. Depends on the environment. | ||
// e.g. use raw files (develop) or build files (production) | ||
var jsBaseUrl = document.body.getAttribute('data-js-path'); | ||
|
||
// requireJs configuration | ||
requirejs.config({ | ||
baseUrl: 'js', // path for baseUrl - dynamically set !below! ("build_js" | "js") | ||
|
||
paths: { | ||
layout: 'layout', | ||
config: 'app/config', // path for "configuration" files dir | ||
dialog: 'app/ui/dialog', // path for "dialog" files dir | ||
templates: '../../templates', // template dir | ||
img: '../../img', // images dir | ||
|
||
// main views | ||
landingpage: './app/landingpage', // initial start "landing page" view | ||
mappage: './app/mappage', // initial start "map page" view | ||
|
||
jquery: 'lib/jquery-1.11.3.min', // v1.11.3 jQuery | ||
bootstrap: 'lib/bootstrap.min', // v3.3.0 Bootstrap js code - http://getbootstrap.com/javascript/ | ||
text: 'lib/requirejs/text', // v2.0.12 A RequireJS/AMD loader plugin for loading text resources. | ||
mustache: 'lib/mustache.min', // v1.0.0 Javascript template engine - http://mustache.github.io/ | ||
velocity: 'lib/velocity.min', // v1.2.2 animation engine - http://julian.com/research/velocity/ | ||
velocityUI: 'lib/velocity.ui.min', // v5.0.4 plugin for velocity - http://julian.com/research/velocity/#uiPack | ||
slidebars: 'lib/slidebars', // v0.10 Slidebars - side menu plugin http://plugins.adchsm.me/slidebars/ | ||
jsPlumb: 'lib/dom.jsPlumb-1.7.6-min', // v1.7.6 jsPlumb (Vanilla)- main map draw plugin https://jsplumbtoolkit.com/ | ||
farahey: 'lib/farahey-0.5', // v0.5 jsPlumb "magnetizing" extension - https://github.com/jsplumb/farahey | ||
customScrollbar: 'lib/jquery.mCustomScrollbar.concat.min', // v3.0.9 Custom scroll bars - http://manos.malihu.gr/ | ||
datatables: 'lib/datatables/jquery.dataTables.min', // v1.10.7 DataTables - https://datatables.net/ | ||
//datatablesBootstrap: 'lib/datatables/dataTables.bootstrap', // DataTables - not used (bootstrap style) | ||
datatablesResponsive: 'lib/datatables/extensions/responsive/dataTables.responsive', // v1.0.6 TableTools (PlugIn) - https://datatables.net/extensions/responsive/ | ||
|
||
datatablesTableTools: 'lib/datatables/extensions/tabletools/js/dataTables.tableTools', // v2.2.3 TableTools (PlugIn) - https://datatables.net/extensions/tabletools/ | ||
xEditable: 'lib/bootstrap-editable.min', // v1.5.1 X-editable - in placed editing | ||
morris: 'lib/morris.min', // v0.5.1 Morris.js - graphs and charts | ||
raphael: 'lib/raphael-min', // v2.1.2 Raphaël - required for morris (dependency) | ||
bootbox: 'lib/bootbox.min', // v4.3.0 Bootbox.js - custom dialogs | ||
easyPieChart: 'lib/jquery.easypiechart.min', // v2.1.6 Easy Pie Chart - HTML 5 pie charts - http://rendro.github.io/easy-pie-chart/ | ||
dragToSelect: 'lib/jquery.dragToSelect', // v1.1 Drag to Select - http://andreaslagerkvist.com/jquery/drag-to-select/ | ||
hoverIntent: 'lib/jquery.hoverIntent.minified', // v1.8.0 Hover intention - http://cherne.net/brian/resources/jquery.hoverIntent.html | ||
fullScreen: 'lib/jquery.fullscreen.min', // v0.5.0 Full screen mode - https://github.com/private-face/jquery.fullscreen | ||
select2: 'lib/select2.min', // v4.0.0 Drop Down customization - https://select2.github.io/ | ||
validator: 'lib/validator.min', // v0.7.2 Validator for Bootstrap 3 - https://github.com/1000hz/bootstrap-validator | ||
lazylinepainter: 'lib/jquery.lazylinepainter-1.5.1.min', // v1.5.1 SVG line animation plugin - http://lazylinepainter.info/ | ||
blueImpGallery: 'lib/blueimp-gallery', // v2.15.2 Image Gallery - https://github.com/blueimp/Gallery/ | ||
blueImpGalleryHelper: 'lib/blueimp-helper', // helper function for Blue Imp Gallery | ||
blueImpGalleryBootstrap: 'lib/bootstrap-image-gallery', // v3.1.1 Bootstrap extension for Blue Imp Gallery - https://blueimp.github.io/Bootstrap-Image-Gallery/ | ||
bootstrapConfirmation: 'lib/bootstrap-confirmation', // v1.0.1 Bootstrap extension for inline confirm dialog - https://github.com/tavicu/bs-confirmation | ||
bootstrapToggle: 'lib/bootstrap2-toggle.min', // v2.2.0 Bootstrap Toggle (Checkbox) - http://www.bootstraptoggle.com/ | ||
|
||
// header animation | ||
easePack: 'lib/EasePack.min', | ||
tweenLite: 'lib/TweenLite.min', | ||
|
||
// notification plugin | ||
pnotify: 'lib/pnotify/pnotify.core', // v2.0.1 PNotify - notification core file | ||
'pnotify.buttons': 'lib/pnotify/pnotify.buttons', // PNotify - buttons notification extension | ||
'pnotify.confirm': 'lib/pnotify/pnotify.confirm', // PNotify - confirmation notification extension | ||
'pnotify.nonblock': 'lib/pnotify/pnotify.nonblock', // PNotify - notification non-block extension (hover effect) | ||
'pnotify.desktop': 'lib/pnotify/pnotify.desktop', // PNotify - desktop push notification extension | ||
'pnotify.history': 'lib/pnotify/pnotify.history', // PNotify - history push notification history extension | ||
'pnotify.callbacks': 'lib/pnotify/pnotify.callbacks', // PNotify - callbacks push notification extension | ||
'pnotify.reference': 'lib/pnotify/pnotify.reference' // PNotify - reference push notification extension | ||
|
||
}, | ||
shim: { | ||
bootstrap: { | ||
deps: ['jquery'] | ||
}, | ||
farahey: { | ||
deps: ['jsPlumb'] | ||
}, | ||
velocity: { | ||
deps: ['jquery'] | ||
}, | ||
velocityUI: { | ||
deps: ['velocity'] | ||
}, | ||
slidebars: { | ||
deps: ['jquery'] | ||
}, | ||
customScrollbar: { | ||
deps: ['jquery'] | ||
}, | ||
datatables: { | ||
deps: ['jquery'] | ||
}, | ||
datatablesBootstrap: { | ||
deps: ['datatables'] | ||
}, | ||
datatablesResponsive: { | ||
deps: ['datatables'] | ||
}, | ||
datatablesTableTools: { | ||
deps: ['datatables'] | ||
}, | ||
xEditable: { | ||
deps: ['bootstrap'] | ||
}, | ||
bootbox: { | ||
deps: ['jquery', 'bootstrap'], | ||
exports: 'bootbox' | ||
}, | ||
morris: { | ||
deps: ['jquery', 'raphael'], | ||
exports: 'Morris' | ||
}, | ||
pnotify: { | ||
deps : ['jquery'] | ||
}, | ||
easyPieChart: { | ||
deps : ['jquery'] | ||
}, | ||
dragToSelect: { | ||
deps : ['jquery'] | ||
}, | ||
hoverIntent: { | ||
deps : ['jquery'] | ||
}, | ||
fullScreen: { | ||
deps : ['jquery'] | ||
}, | ||
select2: { | ||
deps : ['jquery'], | ||
exports: 'Select2' | ||
}, | ||
validator: { | ||
deps : ['jquery', 'bootstrap'] | ||
}, | ||
lazylinepainter: { | ||
deps : ['jquery', 'bootstrap'] | ||
}, | ||
blueImpGallery: { | ||
deps : ['jquery'] | ||
}, | ||
bootstrapConfirmation: { | ||
deps : ['bootstrap'] | ||
}, | ||
bootstrapToggle: { | ||
deps : ['jquery'] | ||
} | ||
} | ||
}); | ||
|
||
// switch baseUrl to js "build_js" in production environment | ||
// this has no effect for js build process! | ||
// check build.js for build configuration | ||
require.config({ | ||
baseUrl: jsBaseUrl | ||
}); | ||
|
||
// load the main app module -> initial app start | ||
requirejs( [mainScriptPath] ); |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
|
||
app/mappage.js | ||
---------------- | ||
lib/jquery-1.11.3.min.js | ||
app/init.js | ||
app/config/system_effect.js | ||
app/config/signature_type.js | ||
lib/bootstrap.min.js | ||
lib/bootbox.min.js | ||
app/ccp.js | ||
lib/velocity.min.js | ||
lib/velocity.ui.min.js | ||
lib/jquery.mCustomScrollbar.concat.min.js | ||
lib/validator.min.js | ||
lib/bootstrap-editable.min.js | ||
lib/jquery.easypiechart.min.js | ||
lib/jquery.hoverIntent.minified.js | ||
lib/bootstrap-confirmation.js | ||
lib/bootstrap2-toggle.min.js | ||
app/util.js | ||
lib/mustache.min.js | ||
app/render.js | ||
app/logging.js | ||
lib/requirejs/text.js | ||
text!img/logo.svg!strip | ||
text!templates/modules/header.html | ||
text!templates/modules/footer.html | ||
app/ui/dialog/notification.js | ||
app/ui/dialog/trust.js | ||
app/ui/dialog/sharing_settings.js | ||
app/ui/dialog/map_info.js | ||
app/ui/dialog/account_settings.js | ||
app/ui/dialog/manual.js | ||
app/ui/dialog/map_settings.js | ||
app/ui/dialog/system_effects.js | ||
app/ui/dialog/jump_info.js | ||
app/ui/dialog/delete_account.js | ||
lib/jquery.lazylinepainter-1.5.1.min.js | ||
app/ui/logo.js | ||
app/ui/dialog/credit.js | ||
lib/slidebars.js | ||
app/counter.js | ||
app/ui/system_info.js | ||
lib/raphael-min.js | ||
lib/morris.min.js | ||
app/ui/system_graph.js | ||
app/ui/system_signature.js | ||
app/ui/system_route.js | ||
app/ui/system_killboard.js | ||
lib/datatables/jquery.dataTables.min.js | ||
lib/datatables/extensions/tabletools/js/dataTables.tableTools.js | ||
lib/datatables/extensions/responsive/dataTables.responsive.js | ||
lib/dom.jsPlumb-1.7.6-min.js | ||
lib/farahey-0.5.js | ||
app/map/magnetizing.js | ||
lib/jquery.dragToSelect.js | ||
lib/select2.min.js | ||
app/map/contextmenu.js | ||
app/map/overlay.js | ||
app/map/map.js | ||
app/module_map.js | ||
app/page.js | ||
app/ui/form_element.js | ||
app/mappage.js | ||
|
||
app/landingpage.js | ||
---------------- | ||
lib/jquery-1.11.3.min.js | ||
app/init.js | ||
app/config/system_effect.js | ||
app/config/signature_type.js | ||
lib/bootstrap.min.js | ||
lib/bootbox.min.js | ||
app/ccp.js | ||
lib/velocity.min.js | ||
lib/velocity.ui.min.js | ||
lib/jquery.mCustomScrollbar.concat.min.js | ||
lib/validator.min.js | ||
lib/bootstrap-editable.min.js | ||
lib/jquery.easypiechart.min.js | ||
lib/jquery.hoverIntent.minified.js | ||
lib/bootstrap-confirmation.js | ||
lib/bootstrap2-toggle.min.js | ||
app/util.js | ||
lib/mustache.min.js | ||
app/render.js | ||
lib/blueimp-helper.js | ||
lib/blueimp-gallery.js | ||
lib/EasePack.min.js | ||
lib/TweenLite.min.js | ||
app/ui/header.js | ||
lib/jquery.lazylinepainter-1.5.1.min.js | ||
app/ui/logo.js | ||
app/ui/demo_map.js | ||
app/ui/dialog/account_settings.js | ||
app/ui/dialog/notification.js | ||
app/ui/dialog/manual.js | ||
app/ui/dialog/credit.js | ||
app/landingpage.js | ||
lib/requirejs/text.js | ||
|
||
app/notification.js | ||
---------------- | ||
app/init.js | ||
lib/pnotify/pnotify.core.js | ||
lib/pnotify/pnotify.nonblock.js | ||
lib/pnotify/pnotify.desktop.js | ||
lib/pnotify/pnotify.callbacks.js | ||
app/notification.js |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.