/gist:70d4aa7616361b4225d595b2edcd397b
Forked from mindspank/gist:17e518f67f674c3caae5
Created Apr 19, 2016
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