mirror of
https://github.com/xenia-project/xenia.git
synced 2026-04-06 23:23:38 +00:00
Starting modal for module info.
This commit is contained in:
parent
e8d45d80e7
commit
8a8ee5dadc
8 changed files with 146 additions and 4 deletions
24
debugger/assets/ui/code/module-info.js
Normal file
24
debugger/assets/ui/code/module-info.js
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
/**
|
||||
******************************************************************************
|
||||
* Xenia : Xbox 360 Emulator Research Project *
|
||||
******************************************************************************
|
||||
* Copyright 2013 Ben Vanik. All rights reserved. *
|
||||
* Released under the BSD license - see LICENSE in the root for more details. *
|
||||
******************************************************************************
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
var module = angular.module('xe.ui.code.moduleInfo', [
|
||||
'ui.bootstrap',
|
||||
'xe.log',
|
||||
'xe.session'
|
||||
]);
|
||||
|
||||
|
||||
module.controller('ModuleInfoController', function(
|
||||
$rootScope, $scope, $modal, log) {
|
||||
$scope.close = function() {
|
||||
$scope.$close(null);
|
||||
};
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue