Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
U
ulakbus-ui
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ulakbus
ulakbus-ui
Commits
65df817c
Commit
65df817c
authored
May 13, 2015
by
Evren Kutar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove unused
parent
39ad0a8a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
35 deletions
+0
-35
view2.html
app/view2/view2.html
+0
-5
view2.js
app/view2/view2.js
+0
-14
view2_test.js
app/view2/view2_test.js
+0
-16
No files found.
app/view2/view2.html
deleted
100644 → 0
View file @
39ad0a8a
<p>
This is the partial for view 2.
</p>
<p>
Showing of 'interpolate' filter:
{{ 'Current version is v%VERSION%.' | interpolate }}
</p>
app/view2/view2.js
deleted
100644 → 0
View file @
39ad0a8a
'use strict'
;
angular
.
module
(
'zaerp.view2'
,
[
'ngRoute'
])
.
config
([
'$routeProvider'
,
function
(
$routeProvider
)
{
$routeProvider
.
when
(
'/view2'
,
{
templateUrl
:
'view2/view2.html'
,
controller
:
'View2Ctrl'
});
}])
.
controller
(
'View2Ctrl'
,
[
function
()
{
}]);
\ No newline at end of file
app/view2/view2_test.js
deleted
100644 → 0
View file @
39ad0a8a
'use strict'
;
describe
(
'zaerp.view2 module'
,
function
()
{
beforeEach
(
module
(
'zaerp.view2'
));
describe
(
'view2 controller'
,
function
(){
it
(
'should ....'
,
inject
(
function
(
$controller
)
{
//spec body
var
view2Ctrl
=
$controller
(
'View2Ctrl'
);
expect
(
view2Ctrl
).
toBeDefined
();
}));
});
});
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment