Skip to content
This repository has been archived by the owner on Jan 28, 2023. It is now read-only.

Commit

Permalink
Fixed comments for new JS files in nanoui.dm.
Browse files Browse the repository at this point in the history
Changed the BYOND cache path in "To BYOND Cache.bat" to a dynamic path.
  • Loading branch information
Faerdan committed Jul 14, 2014
1 parent b22421e commit fd0ee4c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions code/modules/nano/nanoui.dm
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,10 @@ nanoui is used to open and update nano browser uis
add_script("libraries.min.js") // A JS file comprising of jQuery, doT.js and jQuery Timer libraries (compressed together)
add_script("nano_utility.js") // The NanoUtility JS, this is used to store utility functions.
add_script("nano_template.js") // The NanoTemplate JS, this is used to render templates.
add_script("nano_state_manager.js") // The
add_script("nano_state.js") // The
add_script("nano_state_default.js") // The
add_script("nano_base_callbacks.js") // The
add_script("nano_state_manager.js") // The NanoStateManager JS, it handles updates from the server and passes data to the current state
add_script("nano_state.js") // The NanoState JS, this is the base state which all states must inherit from
add_script("nano_state_default.js") // The NanoStateDefault JS, this is the "default" state (used by all UIs by default), which inherits from NanoState
add_script("nano_base_callbacks.js") // The NanoBaseCallbacks JS, this is used to set up (before and after update) callbacks which are common to all templates
add_script("nano_base_helpers.js") // The NanoBaseHelpers JS, this is used to set up template helpers which are common to all templates
add_stylesheet("shared.css") // this CSS sheet is common to all UIs
add_stylesheet("icons.css") // this CSS sheet is common to all UIs
Expand Down
8 changes: 4 additions & 4 deletions nano/To BYOND Cache.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
copy css\* C:\Users\Mark\Documents\BYOND\cache /y
copy images\* C:\Users\Mark\Documents\BYOND\cache /y
copy js\* C:\Users\Mark\Documents\BYOND\cache /y
copy templates\* C:\Users\Mark\Documents\BYOND\cache /y
copy css\* "%USERPROFILE%\Documents\BYOND\cache" /y
copy images\* "%USERPROFILE%\Documents\BYOND\cache" /y
copy js\* "%USERPROFILE%\Documents\BYOND\cache" /y
copy templates\* "%USERPROFILE%\Documents\BYOND\cache" /y

0 comments on commit fd0ee4c

Please sign in to comment.