Skip to content

Commit cf98636

Browse files
authored
Merge pull request #148 from MatteoGheza/feat_electron_fix
Fix
2 parents 51060d1 + 9647c1f commit cf98636

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

UI/src/app/_components/about/about.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ <h4>MIT License</h4>
99
<p>The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.</p>
1010
<p> THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p>
1111
<p>It is not sold, authorized, or associated with any other company or product.</p>
12-
<p>To contact the author or for more information, please visit <a id='bloglink' href='http://www.techministry.blog'>www.techministry.blog</a>.</p>
12+
<p>To contact the author or for more information, please visit <a id='bloglink' target="_blank" href='http://www.techministry.blog'>www.techministry.blog</a>.</p>
1313

1414
</div>
1515
</div>

main.js

+1
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ if (!gotTheLock) {
138138
contents.on('new-window', (e, url) => {
139139
e.preventDefault();
140140
const win = new BrowserWindow({ show: false });
141+
win.loadURL(url);
141142
win.maximize();
142143
win.setMenu(null);
143144
win.webContents.on('did-finish-load', function() {

0 commit comments

Comments
 (0)