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
2c05833d
Commit
2c05833d
authored
Sep 11, 2015
by
Evren Kutar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
new distribution feature 143
parent
bfee5b1e
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
7 deletions
+27
-7
app.js
dist/app.js
+2
-2
components.js
dist/bower_components/components.js
+1
-1
templates.js
dist/templates.js
+24
-4
No files found.
dist/app.js
View file @
2c05833d
This diff is collapsed.
Click to expand it.
dist/bower_components/components.js
View file @
2c05833d
This diff is collapsed.
Click to expand it.
dist/templates.js
View file @
2c05833d
...
@@ -21,7 +21,7 @@ angular.module("components/auth/login.html", []).run(["$templateCache", function
...
@@ -21,7 +21,7 @@ angular.module("components/auth/login.html", []).run(["$templateCache", function
angular
.
module
(
"components/crud/templates/add.html"
,
[]).
run
([
"$templateCache"
,
function
(
$templateCache
)
{
angular
.
module
(
"components/crud/templates/add.html"
,
[]).
run
([
"$templateCache"
,
function
(
$templateCache
)
{
$templateCache
.
put
(
"components/crud/templates/add.html"
,
$templateCache
.
put
(
"components/crud/templates/add.html"
,
"<div
ng-app=
\"
ulakbus.crud
\"
>
\n
"
+
"<div>
\n
"
+
" <ng-include src=
\"
'shared/templates/add.html'
\"
></ng-include>
\n
"
+
" <ng-include src=
\"
'shared/templates/add.html'
\"
></ng-include>
\n
"
+
"</div>"
);
"</div>"
);
}]);
}]);
...
@@ -463,7 +463,7 @@ angular.module("shared/templates/add.html", []).run(["$templateCache", function(
...
@@ -463,7 +463,7 @@ angular.module("shared/templates/add.html", []).run(["$templateCache", function(
" </label>
\n
"
+
" </label>
\n
"
+
" </td>
\n
"
+
" </td>
\n
"
+
" <th scope=
\"
row
\"
style=
\"
text-align:center
\"
>1</th>
\n
"
+
" <th scope=
\"
row
\"
style=
\"
text-align:center
\"
>1</th>
\n
"
+
" <td ng-repeat=
\"
(key,value) in node.
field
s
\"
>{{ value.value }}</td>
\n
"
+
" <td ng-repeat=
\"
(key,value) in node.
model
s
\"
>{{ value.value }}</td>
\n
"
+
" <td>
\n
"
+
" <td>
\n
"
+
" <a ng-href=
\"
#/crud/{{model}}/edit/{{object.key}}
\"
>Edit</a><br>
\n
"
+
" <a ng-href=
\"
#/crud/{{model}}/edit/{{object.key}}
\"
>Edit</a><br>
\n
"
+
" <a ng-href=
\"
#/crud/{{model}}/{{object.key}}
\"
>Show</a>
\n
"
+
" <a ng-href=
\"
#/crud/{{model}}/{{object.key}}
\"
>Show</a>
\n
"
+
...
@@ -499,15 +499,35 @@ angular.module("shared/templates/datefield.html", []).run(["$templateCache", fun
...
@@ -499,15 +499,35 @@ angular.module("shared/templates/datefield.html", []).run(["$templateCache", fun
" ng-disabled=
\"
form.readonly
\"\n
"
+
" ng-disabled=
\"
form.readonly
\"\n
"
+
" schema-validate=
\"
form
\"\n
"
+
" schema-validate=
\"
form
\"\n
"
+
" name=
\"
{{form.key.slice(-1)[0]}}
\"\n
"
+
" name=
\"
{{form.key.slice(-1)[0]}}
\"\n
"
+
" aria-describedby=
\"
{{form.key.slice(-1)[0] + 'Status'}}
\"
/>
\n
"
+
" aria-describedby=
\"
{{form.key.slice(-1)[0] + 'Status'}}
\"\n
"
+
"
\n
"
+
"
\n
"
+
" type=
\"
date
\"\n
"
+
" datepicker-popup
\n
"
+
" is-open=
\"
status.opened
\"\n
"
+
" date-disabled=
\"
disabled(date, mode)
\"\n
"
+
" close-text=
\"
Close
\"
/>
\n
"
+
" <span class=
\"
input-group-btn
\"
>
\n
"
+
" <span class=
\"
input-group-btn
\"
>
\n
"
+
" <button type=
\"
button
\"
class=
\"
btn btn-default
\"
>
\n
"
+
" <button type=
\"
button
\"
class=
\"
btn btn-default
\"
ng-click=
\"
open($event)
\"
>
\n
"
+
" <i class=
\"
glyphicon glyphicon-calendar
\"
></i>
\n
"
+
" <i class=
\"
glyphicon glyphicon-calendar
\"
></i>
\n
"
+
" </button>
\n
"
+
" </button>
\n
"
+
" </span>
\n
"
+
" </span>
\n
"
+
" </p>
\n
"
+
" </p>
\n
"
+
"
\n
"
+
"
\n
"
+
" <!--<input ng-if=
\"
!form.fieldAddonLeft && !form.fieldAddonRight
\"
-->
\n
"
+
" <!--ng-show=
\"
form.key
\"
-->
\n
"
+
" <!--type=
\"
{{form.type}}
\"
-->
\n
"
+
" <!--step=
\"
any
\"
-->
\n
"
+
" <!--sf-changed=
\"
form
\"
-->
\n
"
+
" <!--placeholder=
\"
{{form.placeholder}}
\"
-->
\n
"
+
" <!--class=
\"
form-control {{form.fieldHtmlClass}}
\"
-->
\n
"
+
" <!--id=
\"
{{form.key.slice(-1)[0]}}
\"
-->
\n
"
+
" <!--ng-model-options=
\"
form.ngModelOptions
\"
-->
\n
"
+
" <!--ng-model=
\"
$$value$$
\"
-->
\n
"
+
" <!--ng-disabled=
\"
form.readonly
\"
-->
\n
"
+
" <!--schema-validate=
\"
form
\"
-->
\n
"
+
" <!--name=
\"
{{form.key.slice(-1)[0]}}
\"
-->
\n
"
+
" <!--aria-describedby=
\"
{{form.key.slice(-1)[0] + 'Status'}}
\"
>-->
\n
"
+
"
\n
"
+
" <div ng-if=
\"
form.fieldAddonLeft || form.fieldAddonRight
\"\n
"
+
" <div ng-if=
\"
form.fieldAddonLeft || form.fieldAddonRight
\"\n
"
+
" ng-class=
\"
{'input-group': (form.fieldAddonLeft || form.fieldAddonRight)}
\"
>
\n
"
+
" ng-class=
\"
{'input-group': (form.fieldAddonLeft || form.fieldAddonRight)}
\"
>
\n
"
+
" <span ng-if=
\"
form.fieldAddonLeft
\"\n
"
+
" <span ng-if=
\"
form.fieldAddonLeft
\"\n
"
+
...
...
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