undefined不是资产管道中的函数

时间:2014-10-19 13:51:53

标签: javascript jquery ruby-on-rails-4 asset-pipeline

我在render 'layouts/lms_header'

中加载了breakon.js

但我在undefined is not a function

上获得了$(window).setBreakpoints();

我不知道为什么会收到此错误。

我想我已经加载了jquerybreakpoints.js

我使用breakpoint

http://xoxco.com/projects/code/breakpoints/example.html

Layout.haml

!!!
%html
  %head
    %title BalanceCafe
    = stylesheet_link_tag    'application', media: 'all'
    = javascript_include_tag 'application'
    = csrf_meta_tags
    =render 'layouts/lms_header'

的application.js

//= require jquery
//= require jquery_ujs
//= require_self
//= require welcome

welcome.js

$(document).ready(function() {
  return $(function() {

    $(window).bind("enterBreakpoint1024", function() {
      $("#log").append("<p>Entering 1024 breakpoint</p>");
    });
    $(window).setBreakpoints();
});

0 个答案:

没有答案