mirror of
https://github.com/fergalmoran/fergalmoran.github.com.git
synced 2025-12-22 09:18:48 +00:00
558 lines
17 KiB
JavaScript
Executable File
558 lines
17 KiB
JavaScript
Executable File
/* ===========================================================
|
|
* bootstrap-inputmask.js j1
|
|
* http://twitter.github.com/bootstrap/javascript.html#tooltips
|
|
* Based on Masked Input plugin by Josh Bush (digitalbush.com)
|
|
* ===========================================================
|
|
* Copyright 2012 Jasny BV, Netherlands.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License")
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
* ========================================================== */
|
|
|
|
!function ($) {
|
|
|
|
"use strict"; // jshint ;_;
|
|
|
|
var isIphone = (window.orientation !== undefined),
|
|
isAndroid = navigator.userAgent.toLowerCase().indexOf("android") > -1
|
|
|
|
$.mask = {
|
|
//Predefined character definitions
|
|
definitions: {
|
|
'9': "[0-9]",
|
|
'a': "[A-Za-z]",
|
|
'?': "[A-Za-z0-9]",
|
|
'*': "."
|
|
},
|
|
dataName:"rawMaskFn"
|
|
}
|
|
|
|
|
|
/* INPUTMASK PUBLIC CLASS DEFINITION
|
|
* ================================= */
|
|
|
|
var Inputmask = function (element, options) {
|
|
if (isAndroid) return // No support because caret positioning doesn't work on Android
|
|
|
|
this.$element = $(element)
|
|
this.mask = options.mask
|
|
this.options = $.extend({}, $.fn.inputmask.defaults, options)
|
|
|
|
this.init()
|
|
this.listen()
|
|
|
|
this.checkVal() //Perform initial check for existing values
|
|
}
|
|
|
|
Inputmask.prototype = {
|
|
|
|
init: function() {
|
|
var defs = $.mask.definitions
|
|
var len = this.mask.length
|
|
|
|
this.tests = []
|
|
this.partialPosition = this.mask.length
|
|
this.firstNonMaskPos = null
|
|
|
|
$.each(this.mask.split(""), $.proxy(function(i, c) {
|
|
if (c == '?') {
|
|
len--
|
|
this.partialPosition = i
|
|
} else if (defs[c]) {
|
|
this.tests.push(new RegExp(defs[c]))
|
|
if(this.firstNonMaskPos === null)
|
|
this.firstNonMaskPos = this.tests.length - 1
|
|
} else {
|
|
this.tests.push(null)
|
|
}
|
|
}, this))
|
|
|
|
this.buffer = $.map(this.mask.split(""), $.proxy(function(c, i) {
|
|
if (c != '?') return defs[c] ? this.options.placeholder : c
|
|
}, this))
|
|
|
|
this.focusText = this.$element.val()
|
|
|
|
this.$element.data($.mask.dataName, $.proxy(function() {
|
|
return $.map(this.buffer, function(c, i) {
|
|
return this.tests[i] && c != this.options.placeholder ? c : null
|
|
}).join('')
|
|
}, this))
|
|
},
|
|
|
|
listen: function() {
|
|
if (this.$element.attr("readonly")) return
|
|
|
|
var pasteEventName = ($.browser.msie ? 'paste' : 'input') + ".mask"
|
|
|
|
this.$element
|
|
.on("unmask", $.proxy(this.unmask, this))
|
|
|
|
.on("focus.mask", $.proxy(this.focusEvent, this))
|
|
.on("blur.mask", $.proxy(this.blurEvent, this))
|
|
|
|
.on("keydown.mask", $.proxy(this.keydownEvent, this))
|
|
.on("keypress.mask", $.proxy(this.keypressEvent, this))
|
|
|
|
.on(pasteEventName, $.proxy(this.pasteEvent, this))
|
|
},
|
|
|
|
//Helper Function for Caret positioning
|
|
caret: function(begin, end) {
|
|
if (this.$element.length === 0) return
|
|
if (typeof begin == 'number') {
|
|
end = (typeof end == 'number') ? end : begin
|
|
return this.$element.each(function() {
|
|
if (this.setSelectionRange) {
|
|
this.setSelectionRange(begin, end)
|
|
} else if (this.createTextRange) {
|
|
var range = this.createTextRange()
|
|
range.collapse(true)
|
|
range.moveEnd('character', end)
|
|
range.moveStart('character', begin)
|
|
range.select()
|
|
}
|
|
})
|
|
} else {
|
|
if (this.$element[0].setSelectionRange) {
|
|
begin = this.$element[0].selectionStart
|
|
end = this.$element[0].selectionEnd
|
|
} else if (document.selection && document.selection.createRange) {
|
|
var range = document.selection.createRange()
|
|
begin = 0 - range.duplicate().moveStart('character', -100000)
|
|
end = begin + range.text.length
|
|
}
|
|
return {
|
|
begin: begin,
|
|
end: end
|
|
}
|
|
}
|
|
},
|
|
|
|
seekNext: function(pos) {
|
|
var len = this.mask.length
|
|
while (++pos <= len && !this.tests[pos]);
|
|
|
|
return pos
|
|
},
|
|
|
|
seekPrev: function(pos) {
|
|
while (--pos >= 0 && !this.tests[pos]);
|
|
|
|
return pos
|
|
},
|
|
|
|
shiftL: function(begin,end) {
|
|
var len = this.mask.length
|
|
|
|
if(begin<0) return
|
|
|
|
for (var i = begin,j = this.seekNext(end); i < len; i++) {
|
|
if (this.tests[i]) {
|
|
if (j < len && this.tests[i].test(this.buffer[j])) {
|
|
this.buffer[i] = this.buffer[j]
|
|
this.buffer[j] = this.options.placeholder
|
|
} else
|
|
break
|
|
j = this.seekNext(j)
|
|
}
|
|
}
|
|
this.writeBuffer()
|
|
this.caret(Math.max(this.firstNonMaskPos, begin))
|
|
},
|
|
|
|
shiftR: function(pos) {
|
|
var len = this.mask.length
|
|
|
|
for (var i = pos, c = this.options.placeholder; i < len; i++) {
|
|
if (this.tests[i]) {
|
|
var j = this.seekNext(i)
|
|
var t = this.buffer[i]
|
|
this.buffer[i] = c
|
|
if (j < len && this.tests[j].test(t))
|
|
c = t
|
|
else
|
|
break
|
|
}
|
|
}
|
|
},
|
|
|
|
unmask: function() {
|
|
this.$element
|
|
.unbind(".mask")
|
|
.removeData("inputmask")
|
|
},
|
|
|
|
focusEvent: function() {
|
|
this.focusText = this.$element.val()
|
|
var len = this.mask.length
|
|
var pos = this.checkVal()
|
|
this.writeBuffer()
|
|
|
|
var that = this
|
|
var moveCaret = function() {
|
|
if (pos == len)
|
|
that.caret(0, pos)
|
|
else
|
|
that.caret(pos)
|
|
}
|
|
|
|
if ($.browser.msie)
|
|
moveCaret()
|
|
else
|
|
setTimeout(moveCaret, 0)
|
|
},
|
|
|
|
blurEvent: function() {
|
|
this.checkVal()
|
|
if (this.$element.val() != this.focusText)
|
|
this.$element.trigger('change')
|
|
},
|
|
|
|
keydownEvent: function(e) {
|
|
var k=e.which
|
|
|
|
//backspace, delete, and escape get special treatment
|
|
if (k == 8 || k == 46 || (isIphone && k == 127)) {
|
|
var pos = this.caret(),
|
|
begin = pos.begin,
|
|
end = pos.end
|
|
|
|
if (end-begin === 0) {
|
|
begin = k!=46 ? this.seekPrev(begin) : (end=this.seekNext(begin-1))
|
|
end = k==46 ? this.seekNext(end) : end
|
|
}
|
|
this.clearBuffer(begin, end)
|
|
this.shiftL(begin,end-1)
|
|
|
|
return false
|
|
} else if (k == 27) {//escape
|
|
this.$element.val(this.focusText)
|
|
this.caret(0, this.checkVal())
|
|
return false
|
|
}
|
|
},
|
|
|
|
keypressEvent: function(e) {
|
|
var len = this.mask.length
|
|
|
|
var k = e.which,
|
|
pos = this.caret()
|
|
|
|
if (e.ctrlKey || e.altKey || e.metaKey || k<32) {//Ignore
|
|
return true
|
|
} else if (k) {
|
|
if (pos.end - pos.begin !== 0) {
|
|
this.clearBuffer(pos.begin, pos.end)
|
|
this.shiftL(pos.begin, pos.end-1)
|
|
}
|
|
|
|
var p = this.seekNext(pos.begin - 1)
|
|
if (p < len) {
|
|
var c = String.fromCharCode(k)
|
|
if (this.tests[p].test(c)) {
|
|
this.shiftR(p)
|
|
this.buffer[p] = c
|
|
this.writeBuffer()
|
|
var next = this.seekNext(p)
|
|
this.caret(next)
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
},
|
|
|
|
pasteEvent: function() {
|
|
var that = this
|
|
|
|
setTimeout(function() {
|
|
that.caret(that.checkVal(true))
|
|
}, 0)
|
|
},
|
|
|
|
clearBuffer: function(start, end) {
|
|
var len = this.mask.length
|
|
|
|
for (var i = start; i < end && i < len; i++) {
|
|
if (this.tests[i])
|
|
this.buffer[i] = this.options.placeholder
|
|
}
|
|
},
|
|
|
|
writeBuffer: function() {
|
|
return this.$element.val(this.buffer.join('')).val()
|
|
},
|
|
|
|
checkVal: function(allow) {
|
|
var len = this.mask.length
|
|
//try to place characters where they belong
|
|
var test = this.$element.val()
|
|
var lastMatch = -1
|
|
|
|
for (var i = 0, pos = 0; i < len; i++) {
|
|
if (this.tests[i]) {
|
|
this.buffer[i] = this.options.placeholder
|
|
while (pos++ < test.length) {
|
|
var c = test.charAt(pos - 1)
|
|
if (this.tests[i].test(c)) {
|
|
this.buffer[i] = c
|
|
lastMatch = i
|
|
break
|
|
}
|
|
}
|
|
if (pos > test.length)
|
|
break
|
|
} else if (this.buffer[i] == test.charAt(pos) && i != this.partialPosition) {
|
|
pos++
|
|
lastMatch = i
|
|
}
|
|
}
|
|
if (!allow && lastMatch + 1 < this.partialPosition) {
|
|
this.$element.val("")
|
|
this.clearBuffer(0, len)
|
|
} else if (allow || lastMatch + 1 >= this.partialPosition) {
|
|
this.writeBuffer()
|
|
if (!allow) this.$element.val(this.$element.val().substring(0, lastMatch + 1))
|
|
}
|
|
return (this.partialPosition ? i : this.firstNonMaskPos)
|
|
}
|
|
}
|
|
|
|
|
|
/* INPUTMASK PLUGIN DEFINITION
|
|
* =========================== */
|
|
|
|
$.fn.inputmask = function (options) {
|
|
return this.each(function () {
|
|
var $this = $(this)
|
|
, data = $this.data('inputmask')
|
|
if (!data) $this.data('inputmask', (data = new Inputmask(this, options)))
|
|
})
|
|
}
|
|
|
|
$.fn.inputmask.defaults = {
|
|
placeholder: "_"
|
|
}
|
|
|
|
$.fn.inputmask.Constructor = Inputmask
|
|
|
|
|
|
/* INPUTMASK DATA-API
|
|
* ================== */
|
|
|
|
$(function () {
|
|
$('body').on('focus.inputmask.data-api', '[data-mask]', function (e) {
|
|
var $this = $(this)
|
|
if ($this.data('inputmask')) return
|
|
e.preventDefault()
|
|
$this.inputmask($this.data())
|
|
})
|
|
})
|
|
|
|
}(window.jQuery)/* ============================================================
|
|
* bootstrap-rowlink.js j1
|
|
* http://jasny.github.com/bootstrap/javascript.html#rowlink
|
|
* ============================================================
|
|
* Copyright 2012 Jasny BV, Netherlands.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
* ============================================================ */
|
|
|
|
!function ($) {
|
|
|
|
"use strict"; // jshint ;_;
|
|
|
|
var Rowlink = function (element, options) {
|
|
options = $.extend({}, $.fn.rowlink.defaults, options)
|
|
var tr = element.nodeName == 'tr' ? $(element) : $(element).find('tr:has(td)')
|
|
|
|
tr.each(function() {
|
|
var link = $(this).find(options.target).first()
|
|
if (!link.length) return
|
|
|
|
var href = link.attr('href')
|
|
|
|
$(this).find('td').not('.nolink').click(function() {
|
|
window.location = href;
|
|
})
|
|
|
|
$(this).addClass('rowlink')
|
|
link.replaceWith(link.html())
|
|
})
|
|
}
|
|
|
|
|
|
/* ROWLINK PLUGIN DEFINITION
|
|
* =========================== */
|
|
|
|
$.fn.rowlink = function (options) {
|
|
return this.each(function () {
|
|
var $this = $(this)
|
|
, data = $this.data('rowlink')
|
|
if (!data) $this.data('rowlink', (data = new Rowlink(this, options)))
|
|
})
|
|
}
|
|
|
|
$.fn.rowlink.defaults = {
|
|
target: "a"
|
|
}
|
|
|
|
$.fn.rowlink.Constructor = Rowlink
|
|
|
|
|
|
/* ROWLINK DATA-API
|
|
* ================== */
|
|
|
|
$(function () {
|
|
$('[data-provides="rowlink"]').each(function () {
|
|
$(this).rowlink($(this).data())
|
|
})
|
|
})
|
|
|
|
}(window.jQuery)
|
|
/* ===========================================================
|
|
* bootstrap-fileupload.js j1a
|
|
* http://jasny.github.com/bootstrap/javascript.html#fileupload
|
|
* ===========================================================
|
|
* Copyright 2012 Jasny BV, Netherlands.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License")
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
* ========================================================== */
|
|
|
|
!function ($) {
|
|
|
|
"use strict"; // jshint ;_
|
|
|
|
/* INPUTMASK PUBLIC CLASS DEFINITION
|
|
* ================================= */
|
|
|
|
var Fileupload = function (element, options) {
|
|
this.$element = $(element)
|
|
this.type = this.$element.data('uploadtype') || (this.$element.find('.thumbnail').length > 0 ? "image" : "file")
|
|
|
|
this.$input = this.$element.find(':file')
|
|
if (this.$input.length === 0) return
|
|
|
|
this.name = this.$input.attr('name') || options.name
|
|
|
|
this.$hidden = this.$element.find(':hidden[name="'+this.name+'"]')
|
|
if (this.$hidden.length === 0) {
|
|
this.$hidden = $('<input type="hidden" />')
|
|
this.$element.prepend(this.$hidden)
|
|
}
|
|
|
|
this.$preview = this.$element.find('.fileupload-preview')
|
|
var height = this.$preview.css('height')
|
|
if (this.$preview.css('display') != 'inline' && height != '0px' && height != 'none') this.$preview.css('line-height', height)
|
|
|
|
this.$remove = this.$element.find('[data-dismiss="fileupload"]')
|
|
|
|
this.listen()
|
|
}
|
|
|
|
Fileupload.prototype = {
|
|
|
|
listen: function() {
|
|
this.$input.on('change.fileupload', $.proxy(this.change, this))
|
|
if (this.$remove) this.$remove.on('click.fileupload', $.proxy(this.clear, this))
|
|
},
|
|
|
|
change: function(e, invoked) {
|
|
var file = e.target.files !== undefined ? e.target.files[0] : { name: e.target.value.replace(/^.+\\/, '') }
|
|
if (!file || invoked === 'clear') return
|
|
|
|
this.$hidden.val('')
|
|
this.$hidden.attr('name', '')
|
|
this.$input.attr('name', this.name)
|
|
|
|
if (this.type === "image" && this.$preview.length > 0 && (typeof file.type !== "undefined" ? file.type.match('image.*') : file.name.match('\\.(gif|png|jpe?g)$')) && typeof FileReader !== "undefined") {
|
|
var reader = new FileReader()
|
|
var preview = this.$preview
|
|
var element = this.$element
|
|
|
|
reader.onload = function(e) {
|
|
preview.html('<img src="' + e.target.result + '" ' + (preview.css('max-height') != 'none' ? 'style="max-height: ' + preview.css('max-height') + ';"' : '') + ' />')
|
|
element.addClass('fileupload-exists').removeClass('fileupload-new')
|
|
}
|
|
|
|
reader.readAsDataURL(file)
|
|
} else {
|
|
this.$preview.text(file.name)
|
|
this.$element.addClass('fileupload-exists').removeClass('fileupload-new')
|
|
}
|
|
},
|
|
|
|
clear: function(e) {
|
|
this.$hidden.val('')
|
|
this.$hidden.attr('name', this.name)
|
|
this.$input.attr('name', '')
|
|
|
|
this.$preview.html('')
|
|
this.$element.addClass('fileupload-new').removeClass('fileupload-exists')
|
|
|
|
this.$input.trigger('change', [ 'clear' ])
|
|
|
|
e.preventDefault()
|
|
return false
|
|
}
|
|
}
|
|
|
|
|
|
/* INPUTMASK PLUGIN DEFINITION
|
|
* =========================== */
|
|
|
|
$.fn.fileupload = function (options) {
|
|
return this.each(function () {
|
|
var $this = $(this)
|
|
, data = $this.data('fileupload')
|
|
if (!data) $this.data('fileupload', (data = new Fileupload(this, options)))
|
|
})
|
|
}
|
|
|
|
$.fn.fileupload.Constructor = Fileupload
|
|
|
|
|
|
/* INPUTMASK DATA-API
|
|
* ================== */
|
|
|
|
$(function () {
|
|
$('body').on('click.fileupload.data-api', '[data-provides="fileupload"]', function (e) {
|
|
var $this = $(this)
|
|
if ($this.data('fileupload')) return
|
|
$this.fileupload($this.data())
|
|
|
|
if ($(e.target).data('dismiss') == 'fileupload') $(e.target).trigger('click.fileupload')
|
|
})
|
|
})
|
|
|
|
}(window.jQuery)
|