Pregunta

How to close window using AngularJs and node-webkit ? I don't want to use funcionality of windows.close() when navigathing through app.

¿Fue útil?

Solución

you'll want to use node-webkit's native API to access the window Object ... node-webkit Window API

var gui = require('nw.gui');
var win = gui.Window.get();

var app = angular.module('myApp', []);

app.controller('homeCtrl', ["$scope", function ($scope) {
    $scope.close = function() {
       win.close(); 
    };
}]);
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top