Commit 85a74e64 authored by Evren Kutar's avatar Evren Kutar

dist regenerate for 0.8

parent 04c0d62b
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -172,17 +172,26 @@ angular.module("components/crud/templates/form.html", []).run(["$templateCache", ...@@ -172,17 +172,26 @@ angular.module("components/crud/templates/form.html", []).run(["$templateCache",
angular.module("components/crud/templates/inline_edit.html", []).run(["$templateCache", function($templateCache) { angular.module("components/crud/templates/inline_edit.html", []).run(["$templateCache", function($templateCache) {
$templateCache.put("components/crud/templates/inline_edit.html", $templateCache.put("components/crud/templates/inline_edit.html",
"<input type=\"text\"\n" + "<input type=\"text\"\n" +
" class=\"form-control\"\n" +
" ng-if=\"node.schema.properties[k].type === 'date'\"\n" + " ng-if=\"node.schema.properties[k].type === 'date'\"\n" +
" ng-model=\"node.model[outerIndex][k]\"\n" + " ng-model=\"node.model[outerIndex][k]\"\n" +
" uib-datepicker-popup=\"{{node.model[outerIndex][k]}}\"\n" + " uib-datepicker-popup=\"dd.MM.yyyy\"\n" +
" is-open=\"datepickerstatuses[outerIndex]\"\n" + " is-open=\"datepickerstatuses[outerIndex]\"\n" +
" close-text=\"Kapat\"\n" + " close-text=\"Kapat\"\n" +
" current-text=\"Bugün\"\n" + " current-text=\"Bugün\"\n" +
" clear-text=\"Temizle\"\n" + " clear-text=\"Temizle\"\n" +
" ng-click=\"openDatepicker(outerIndex)\">\n" + " ng-click=\"openDatepicker(outerIndex)\">\n" +
"\n" + "\n" +
"<select ng-model=\"node.model[outerIndex][k]\"\n" +
" ng-if=\"node.schema.properties[k].type === 'select'\"\n" +
" class=\"form-control\"\n" +
" name=\"selectinline{{outerIndex}}\">\n" +
" <option ng-repeat=\"item in node.schema.properties[k].titleMap\" value=\"{{item.value}}\">{{item.name}}</option>\n" +
"</select>\n" +
"\n" +
"<input type=\"{{node.schema.properties[k].type}}\"\n" + "<input type=\"{{node.schema.properties[k].type}}\"\n" +
" ng-if=\"node.schema.properties[k].type !== 'date'\"\n" + " class=\"form-control\"\n" +
" ng-if=\"node.schema.properties[k].type !== 'date' && node.schema.properties[k].type !== 'select'\"\n" +
" ng-model=\"node.model[outerIndex][k]\"\n" + " ng-model=\"node.model[outerIndex][k]\"\n" +
" ng-change=\"nodeModelChange(this)\">"); " ng-change=\"nodeModelChange(this)\">");
}]); }]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment