Browse Source

Fixing typo

Javi Jimenez Villar 13 years ago
parent
commit
14d6d1db0f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/boot/Lungo.Boot.Device.coffee

+ 1 - 1
src/boot/Lungo.Boot.Device.coffee

@@ -17,7 +17,7 @@ Lungo.Boot.Device = do(lng = Lungo) ->
   init = ->
     env = lng.Core.environment()
     lng.DEVICE = (if env.screen.width < 768 then DEVICE.PHONE else DEVICE.TABLET)
-    lng.dom(document.body).data "data", lng.DEVICE
+    lng.dom(document.body).data "device", lng.DEVICE
     lng.Aside.draggable()  if lng.DEVICE is lng.Constants.DEVICE.PHONE
 
   init: init