Commit 630835fb authored by Evren Kutar's avatar Evren Kutar

version0.6.8

parent c6245908
0.6.7 0.6.8
\ No newline at end of file \ No newline at end of file
...@@ -5,4 +5,4 @@ angular.module('ulakbus.version', [ ...@@ -5,4 +5,4 @@ angular.module('ulakbus.version', [
'ulakbus.version.version-directive' 'ulakbus.version.version-directive'
]) ])
.value('version', '0.6.7'); .value('version', '0.6.8');
...@@ -5,7 +5,7 @@ describe('ulakbus.version module', function() { ...@@ -5,7 +5,7 @@ describe('ulakbus.version module', function() {
describe('version service', function() { describe('version service', function() {
it('should return current version', inject(function(version) { it('should return current version', inject(function(version) {
expect(version).toEqual('0.6.7'); expect(version).toEqual('0.6.8');
})); }));
}); });
}); });
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
</ul> </ul>
</span> </span>
<input type="text" <input type="text"
ng-model="$$value$$" ng-model="form.model"
uib-typeahead="item as item.name for item in form.getTitleMap($viewValue)" uib-typeahead="item as item.name for item in form.getTitleMap($viewValue)"
typeahead-on-select="form.onSelect($item)" typeahead-on-select="form.onSelect($item)"
typeahead-loading="loadingTitleMap" typeahead-no-results="noResults" typeahead-loading="loadingTitleMap" typeahead-no-results="noResults"
......
This diff is collapsed.
...@@ -1509,7 +1509,7 @@ angular.module("shared/templates/foreignKey.html", []).run(["$templateCache", fu ...@@ -1509,7 +1509,7 @@ angular.module("shared/templates/foreignKey.html", []).run(["$templateCache", fu
" </ul>\n" + " </ul>\n" +
" </span>\n" + " </span>\n" +
" <input type=\"text\"\n" + " <input type=\"text\"\n" +
" ng-model=\"$$value$$\"\n" + " ng-model=\"form.model\"\n" +
" uib-typeahead=\"item as item.name for item in form.getTitleMap($viewValue)\"\n" + " uib-typeahead=\"item as item.name for item in form.getTitleMap($viewValue)\"\n" +
" typeahead-on-select=\"form.onSelect($item)\"\n" + " typeahead-on-select=\"form.onSelect($item)\"\n" +
" typeahead-loading=\"loadingTitleMap\" typeahead-no-results=\"noResults\"\n" + " typeahead-loading=\"loadingTitleMap\" typeahead-no-results=\"noResults\"\n" +
......
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