clean up debug code

This commit is contained in:
Keegan
2016-01-19 14:13:50 -08:00
parent 0a1b23d7ce
commit e5c3f15e67
2 changed files with 4 additions and 11 deletions
-8
View File
@@ -7,11 +7,3 @@ window.customFn = require('./custom-fn.js');
var platform = window.navigator.userAgent.match('Android') ? 'android' : 'ios';
document.documentElement.classList.add('platform-' + platform);
window.expand = function(obj) {
obj.size = 5;
};
function unexpand(obj) {
obj.size = 1;
}