webappengine
Version:
A web application platform that can host multiple web apps running with Node.js.
25 lines (19 loc) • 410 B
JavaScript
/**
* Actions that modify the URL.
*/
;
var LocationActions = {
/**
* Indicates a new location is being pushed to the history stack.
*/
PUSH: 'push',
/**
* Indicates the current location should be replaced.
*/
REPLACE: 'replace',
/**
* Indicates the most recent entry should be removed from the history stack.
*/
POP: 'pop'
};
module.exports = LocationActions;