-
Notifications
You must be signed in to change notification settings - Fork 823
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create standalone survey UI package (#8537)
* Fixed jquery-ui bundle size * Added localization to test pages * Added example/test pages and functional/visual test scripts * Fixed example page * Get rid of unneeded build artifacts * Try to fix f- and vr- tests * Try to fix f- and vr- tests * Fixed lint * Fixed f-tests * Fixed ranking item template test * Fixed vr-tests --------- Co-authored-by: tsv2013 <[email protected]>
- Loading branch information
Showing
26 changed files
with
1,230 additions
and
250 deletions.
There are no files selected for viewing
17 changes: 0 additions & 17 deletions
17
build-scripts/survey-jquery-ui/tsconfig.plugins.themes.typing.json
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
build-scripts/survey-ui/tsconfig.plugins.themes.typing.json
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,9 +8,9 @@ | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
|
||
<!-- <link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/css/bootstrap.min.css"> --> | ||
<!-- <link rel="stylesheet" href="../../build/survey-jquery-ui/survey.css" /> --> | ||
<!-- <link rel="stylesheet" href="../../build/survey-jquery-ui/modern.css" /> --> | ||
<link rel="stylesheet" href="../../build/survey-jquery-ui/defaultV2.css" /> | ||
<!-- <link rel="stylesheet" href="../../build/survey-core/survey.css" /> --> | ||
<!-- <link rel="stylesheet" href="../../build/survey-core/modern.css" /> --> | ||
<link rel="stylesheet" href="../../build/survey-core/defaultV2.css" /> | ||
<script src="../../build/survey-core/survey.core.js"></script> | ||
<script src="../../build/survey-jquery-ui/survey-jquery-ui.js"></script> | ||
</head> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title>Welcome to JQuery</title> | ||
|
||
|
||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js"></script> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
|
||
<!-- <link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/css/bootstrap.min.css"> --> | ||
<!-- <link rel="stylesheet" href="../../build/survey-core/survey.css" /> --> | ||
<!-- <link rel="stylesheet" href="../../build/survey-core/modern.css" /> --> | ||
<link rel="stylesheet" href="../../build/survey-core/defaultV2.css" /> | ||
<script src="../../build/survey-core/survey.core.js"></script> | ||
<script src="../../build/survey-ui/survey-ui.js"></script> | ||
</head> | ||
|
||
<body> | ||
<div id="surveyElement"></div> | ||
<div id="surveyResultElement"></div> | ||
<script src="./index.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.