1
0
mirror of https://github.com/moparisthebest/mail synced 2024-08-13 16:43:47 -04:00
mail/src/js/controller/navigation.js

34 lines
921 B
JavaScript
Raw Normal View History

2013-09-17 13:11:30 -04:00
define(function() {
'use strict';
var NavigationCtrl = function($scope) {
$scope.navOpen = false;
$scope.openNav = function() {
$scope.navOpen = true;
};
$scope.closeNav = function() {
$scope.navOpen = false;
};
2013-09-18 16:05:51 -04:00
$scope.write = function(replyTo) {
var replyToId = (replyTo) ? replyTo.uid : '',
url = 'index.html#/write/' + replyToId;
if (window.chrome && chrome.app.window) {
chrome.app.window.create(url, {
'bounds': {
'width': 720,
2013-09-19 09:41:21 -04:00
'height': 640
2013-09-18 16:05:51 -04:00
}
});
return;
}
2013-09-19 09:41:21 -04:00
window.open(url, 'Compose Message', 'toolbar=no,width=720,height=640,left=500,top=200,status=no,scrollbars=no,resize=no');
2013-09-18 16:05:51 -04:00
};
2013-09-17 13:11:30 -04:00
};
return NavigationCtrl;
});