Skip to content

Commit

Permalink
Correct jQuery UI widget usage
Browse files Browse the repository at this point in the history
- Fixed, mvc lookup not being created by the widget factory, because of
the missing widget namespace.
  • Loading branch information
Muchiachio committed Nov 28, 2015
1 parent 8b37d15 commit fab3e35
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Mvc.Lookup.Core/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"licenseUrl": "http://opensource.org/licenses/MIT",
"authors": [ "NonFactors" ],
"tags": [ "mvc lookup" ],
"version": "0.9.0",
"version": "0.9.1",

"dependencies": {
"System.Linq.Dynamic": "1.0.4",
Expand Down
2 changes: 1 addition & 1 deletion src/Mvc.Lookup/Content/MvcLookup/mvc-lookup.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Mvc.Lookup 0.9.0
* Mvc.Lookup 0.9.1
* https://github.com/NonFactors/MVC6.Lookup
*
* Copyright © NonFactors
Expand Down
4 changes: 2 additions & 2 deletions src/Mvc.Lookup/Scripts/MvcLookup/mvc-lookup.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Mvc.Lookup 0.9.0
* Mvc.Lookup 0.9.1
* https://github.com/NonFactors/MVC6.Lookup
*
* Copyright © NonFactors
Expand All @@ -8,7 +8,7 @@
* http://www.opensource.org/licenses/mit-license.php
*/
(function ($) {
$.widget('mvclookup', {
$.widget('mvc.mvclookup', {
_create: function () {
if (!this.element.hasClass('mvc-lookup-input')) {
return;
Expand Down
2 changes: 1 addition & 1 deletion src/Mvc.Lookup/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"licenseUrl": "http://opensource.org/licenses/MIT",
"authors": [ "NonFactors" ],
"tags": [ "mvc lookup" ],
"version": "0.9.0",
"version": "0.9.1",

"compilationOptions": {
"warningsAsErrors": true
Expand Down

0 comments on commit fab3e35

Please sign in to comment.