Skip to content

Instantly share code, notes, and snippets.

@QETHAN
Created April 28, 2013 04:55
Show Gist options
  • Save QETHAN/5475946 to your computer and use it in GitHub Desktop.
Save QETHAN/5475946 to your computer and use it in GitHub Desktop.
/**
* 主线js
* 点击小图查看大图测试
*/
define(function(require, exports) {
var query = require("./queryRandom")
, flbox = require("./flbox");
exports.bind = function(element) {
element.onclick = function() {
var href = this.href;
flbox.open(query.queryRandom(href));
return false;
};
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment