pandora/static/js/pandora/embedNavigation.js

14 lines
239 B
JavaScript
Raw Normal View History

2013-03-01 11:24:33 +00:00
'use strict';
pandora.ui.embedNavigation = function(type) {
var that = pandora.ui.navigationView(type, 16/9);
that.resizePanel = function() {
pandora.$ui.map.resizeMap();
return that;
};
return that;
};