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
b4c9e7f7
Commit
b4c9e7f7
authored
Sep 18, 2015
by
Evren Kutar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
v0.0.3.1 topoffset error fix
parent
2338807e
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
5 deletions
+9
-5
Gruntfile.js
Gruntfile.js
+4
-2
main.html
app/main.html
+2
-1
app.js
dist/app.js
+1
-1
index.html
dist/index.html
+2
-1
No files found.
Gruntfile.js
View file @
b4c9e7f7
...
...
@@ -77,7 +77,9 @@ module.exports = function (grunt) {
{
expand
:
true
,
cwd
:
'app/styles/'
,
src
:
'jquery-ui.min.css'
,
dest
:
'dist/css/'
,
flatten
:
true
},
{
expand
:
true
,
cwd
:
'app/styles/images/'
,
src
:
'*'
,
dest
:
'dist/css/images/'
,
flatten
:
true
},
{
expand
:
true
,
cwd
:
'app/bower_components/bootstrap/dist/fonts/'
,
src
:
'*'
,
dest
:
'dist/fonts/'
,
flatten
:
true
,
filter
:
'isFile'
},
{
expand
:
true
,
cwd
:
'app/bower_components/jquery/dist/'
,
src
:
'jquery.min.js'
,
dest
:
'dist/bower_components/'
,
flatten
:
true
,
filter
:
'isFile'
}
{
expand
:
true
,
cwd
:
'app/bower_components/jquery/dist/'
,
src
:
'jquery.min.js'
,
dest
:
'dist/bower_components/'
,
flatten
:
true
,
filter
:
'isFile'
},
{
expand
:
true
,
cwd
:
'app/bower_components/angular/'
,
src
:
'angular.min.js'
,
dest
:
'dist/bower_components/'
,
flatten
:
true
,
filter
:
'isFile'
},
{
expand
:
true
,
cwd
:
'app/shared/scripts/'
,
src
:
'theme.js'
,
dest
:
'dist/bower_components/'
,
flatten
:
true
,
filter
:
'isFile'
}
]
}
...
...
@@ -103,12 +105,12 @@ module.exports = function (grunt) {
"app/zetalib/interceptors.js"
,
"app/zetalib/general.js"
,
"app/zetalib/forms/form_service.js"
,
"app/shared/scripts/theme.js"
,
"app/shared/directives.js"
,
"app/components/auth/auth_controller.js"
,
"app/components/auth/auth_service.js"
,
"app/components/dashboard/dashboard_controller.js"
,
"app/components/crud/crud_controller.js"
,
//"app/shared/scripts/theme.js",
],
dest
:
'dist/app.js'
},
...
...
app/main.html
View file @
b4c9e7f7
...
...
@@ -115,11 +115,12 @@
<!-- @if NODE_ENV == 'PRODUCTION' -->
<script
src=
"bower_components/jquery.min.js"
></script>
<script
src=
"
http://ajax.googleapis.com/ajax/libs/angularjs/1.3.18
/angular.min.js"
></script>
<script
src=
"
bower_components
/angular.min.js"
></script>
<script
src=
"bower_components/components.js"
></script>
<script
src=
"shared/translations.js"
></script>
<script
src=
"templates.js"
></script>
<script
src=
"app.js"
></script>
<script
src=
"bower_components/theme.js"
></script>
<!-- @endif -->
</body>
</html>
dist/app.js
View file @
b4c9e7f7
This diff is collapsed.
Click to expand it.
dist/index.html
View file @
b4c9e7f7
...
...
@@ -59,10 +59,11 @@
<script
src=
"bower_components/jquery.min.js"
></script>
<script
src=
"
http://ajax.googleapis.com/ajax/libs/angularjs/1.3.18
/angular.min.js"
></script>
<script
src=
"
bower_components
/angular.min.js"
></script>
<script
src=
"bower_components/components.js"
></script>
<script
src=
"shared/translations.js"
></script>
<script
src=
"templates.js"
></script>
<script
src=
"app.js"
></script>
<script
src=
"bower_components/theme.js"
></script>
</body>
</html>
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