Grab object IDs
(function() { | |
(function foo(node) { | |
if (node && node.$id) { | |
if (node.$$childHead) foo(node.$$childHead); | |
if (node.$$nextSibling) foo(node.$$nextSibling); | |
if (node.model && node.model.layout) node.model.layout.title = node.model.id; | |
} | |
})(qvangularGlobal.$rootScope); | |
$('*').css('-webkit-user-select', 'all'); | |
pubsub.publish('/resize/end') | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment