switching address syntax, updating redirection domain

This commit is contained in:
Wayne Chen 2018-08-29 16:11:51 -07:00
parent 223f86108f
commit 6cdcae3349
3 changed files with 1156 additions and 5 deletions

View file

@ -341,8 +341,6 @@ else()
set(INTERFACE_EXEC_DIR "$<TARGET_FILE_DIR:${TARGET_NAME}>")
set(RESOURCES_DEV_DIR "${INTERFACE_EXEC_DIR}/resources")
message(STATUS "${RESOURCES_DEV_DIR}")
# copy the resources files beside the executable
add_custom_command(TARGET ${TARGET_NAME} POST_BUILD
COMMAND "${CMAKE_COMMAND}" -E copy_if_different

View file

@ -79,7 +79,7 @@ StackView {
return;
}
location.text = targetString;
toggleOrGo(true, targetString);
toggleOrGo(targetString, true);
clearAddressLineTimer.start();
}
@ -401,7 +401,7 @@ StackView {
}
}
function toggleOrGo(fromSuggestions, address) {
function toggleOrGo(address, fromSuggestions) {
if (address !== undefined && address !== "") {
addressBarDialog.loadAddress(address, fromSuggestions);
clearAddressLineTimer.start();

File diff suppressed because one or more lines are too long