This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2329 from adobe/nj/extract-about-dialog
Extract About dialog from main HTML file so that we can override it easily in Edge Code
- Loading branch information
Showing
9 changed files
with
114 additions
and
104 deletions.
There are no files selected for viewing
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 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 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,18 @@ | ||
<div class="about-dialog modal"> | ||
<div class="modal-header"> | ||
<h1 class="dialog-title">{{ABOUT}}</h1> | ||
</div> | ||
<div class="modal-body"> | ||
<img class="about-icon" src="{{ABOUT_ICON}}"> | ||
<div class="about-text"> | ||
<h2>{{APP_NAME_ABOUT_BOX}}</h2> | ||
<p class="dialog-message">{{ABOUT_TEXT_LINE1}} <span id="about-build-number">({{BUILD_INFO}})</span></p> | ||
<p class="dialog-message"><!-- $NON-NLS$ -->Copyright 2012 Adobe Systems Incorporated and its licensors. All rights reserved.</p> | ||
<p class="dialog-message">{{{ABOUT_TEXT_LINE3}}}</p> | ||
<p class="dialog-message">{{{ABOUT_TEXT_LINE4}}}</p> | ||
</div> | ||
</div> | ||
<div class="modal-footer"> | ||
<a href="#" class="dialog-button btn primary" data-button-id="ok">{{CLOSE}}</a> | ||
</div> | ||
</div> |
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 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,14 @@ | ||
<div class="project-settings-dialog modal"> | ||
<div class="modal-header"> | ||
<h1 class="dialog-title"></h1> | ||
</div> | ||
<div class="modal-body"> | ||
<div class="settings-list"> | ||
<label>{{PROJECT_SETTING_BASE_URL}}: <input type="text" placeholder="{{PROJECT_SETTING_BASE_URL_HINT}}" class="base-url" /></label> | ||
</div> | ||
</div> | ||
<div class="modal-footer"> | ||
<a href="#" class="dialog-button btn left" data-button-id="cancel">{{CANCEL}}</a> | ||
<a href="#" class="dialog-button btn primary" data-button-id="ok">{{OK}}</a> | ||
</div> | ||
</div> |
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,17 @@ | ||
<div class="update-dialog modal"> | ||
<div class="modal-header"> | ||
<h1 class="dialog-title">{{UPDATE_AVAILABLE_TITLE}}</h1> | ||
</div> | ||
<div class="modal-body"> | ||
<img class="update-icon" src="styles/images/update_large_icon.svg"> | ||
<div class="update-text"> | ||
<p class="dialog-message">{{UPDATE_MESSAGE}}</p> | ||
<div class="update-info"> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="modal-footer"> | ||
<a href="#" class="dialog-button btn left" data-button-id="cancel">{{CANCEL}}</a> | ||
<a href="#" class="dialog-button btn primary" data-button-id="download">{{GET_IT_NOW}}</a> | ||
</div> | ||
</div> |
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 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 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