You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
defmoduleBlog.MixfiledouseMix.Projectdefprojectdo[app: :blog,version: "0.0.1",elixir: "~> 1.0",elixirc_paths: elixirc_paths(Mix.env),compilers: [:phoenix]++Mix.compilers,build_embedded: Mix.env==:prod,start_permanent: Mix.env==:prod,deps: deps]end# Configuration for the OTP application## Type `mix help compile.app` for more informationdefapplicationdo[mod: {Blog,[]},applications: [:phoenix,:phoenix_html,:cowboy,:logger,:phoenix_ecto,:mariaex,:plug_accesslog,:tzdata]]end# Specifies which paths to compile per environmentdefpelixirc_paths(:test),do: ["lib","web","test/support"]defpelixirc_paths(_),do: ["lib","web"]# Specifies your project dependencies## Type `mix help deps` for examples and optionsdefpdepsdo[{:phoenix,"~> 1.0.2"},{:phoenix_ecto,"~> 1.1"},{:mariaex,">= 0.0.0"},{:phoenix_html,"~> 2.1"},{:phoenix_live_reload,"~> 1.0",only: :dev},{:cowboy,"~> 1.0"},{:plug_ribbon,"~> 0.2.0"},{:plug_accesslog,"~> 0.9"},{:timex,"~> 0.19.5"}]endaend
The text was updated successfully, but these errors were encountered:
varregisterClock=functionregisterClock(tz){// Uncaught TypeError: socket.join is not a functionsocket.join("currenttime:"+tz,{}).receive("ignore",function(){returnconsole.log("auth error");}).receive("ok",callback).after(10000,function(){returnconsole.log("Connection interruption");});};
I'm using timex
0.19.5
and phoenix1.0.2
my
mix.exs
file is:The text was updated successfully, but these errors were encountered: