Skip to content
Snippets Groups Projects
Commit 64bf4dc4 authored by Amanda Ghassaei's avatar Amanda Ghassaei
Browse files

small fix

parent 612a8cc2
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,7 @@ define(['jquery', 'underscore', 'backbone', 'text!navViewMenuTemplate'], functio
_makeSelection: function(e){
e.preventDefault();
var $target = $(e.target);
if ($target.prop("tagName") == "SPAN") $target = $target.parent();
var property = $target.data("property");
var owner = this._getPropertyOwner($target);
if (owner) owner.set(property, !owner.get(property));
......@@ -30,7 +31,8 @@ define(['jquery', 'underscore', 'backbone', 'text!navViewMenuTemplate'], functio
_getPropertyOwner: function($target){
if ($target.hasClass("appState")) return this.model;
console.warn("no owner found for " + $target);
console.warn("no owner found for:");
console.warn($target);
return null;
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment